pub struct LargeString(pub String);Expand description
LargeUtf8 (64-bit-offset string array) wire type. Stored as a
regular String in user code; the wrapper just tags the wire shape.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for LargeString
impl Clone for LargeString
Source§fn clone(&self) -> LargeString
fn clone(&self) -> LargeString
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LargeString
impl Debug for LargeString
impl Eq for LargeString
Source§impl From<LargeString> for String
impl From<LargeString> for String
Source§fn from(s: LargeString) -> Self
fn from(s: LargeString) -> Self
Converts to this type from the input type.
Source§impl From<String> for LargeString
impl From<String> for LargeString
Source§impl PartialEq for LargeString
impl PartialEq for LargeString
Source§fn eq(&self, other: &LargeString) -> bool
fn eq(&self, other: &LargeString) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LargeString
Source§impl VgiArrow for LargeString
impl VgiArrow for LargeString
Source§fn arrow_data_type() -> DataType
fn arrow_data_type() -> DataType
The Arrow
DataType carrying values of this Rust type.Source§fn describe_name() -> String
fn describe_name() -> String
Wire-format type name surfaced via
__describe__ metadata.
Mirrors Python: "str", "int", "list[int]", "int | None".Source§fn read(arr: &dyn Array, idx: usize) -> Result<Self>
fn read(arr: &dyn Array, idx: usize) -> Result<Self>
Pull this value out of
arr at row idx. Errors with a
RpcError::type_error if arr’s concrete type doesn’t match
Self::arrow_data_type().Source§fn build_singleton(value: Self) -> Result<ArrayRef>
fn build_singleton(value: Self) -> Result<ArrayRef>
Build a 1-row
ArrayRef containing value.Auto Trait Implementations§
impl Freeze for LargeString
impl RefUnwindSafe for LargeString
impl Send for LargeString
impl Sync for LargeString
impl Unpin for LargeString
impl UnsafeUnpin for LargeString
impl UnwindSafe for LargeString
Blanket Implementations§
impl<T> Allocation for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more