pub trait ByteViewType:
Sealed
+ 'static
+ PartialEq
+ Send
+ Sync {
type Native: ByteArrayNativeType + AsRef<Self::Native> + AsRef<[u8]> + ?Sized;
type Owned: Debug + Clone + Sync + Send + AsRef<Self::Native>;
const IS_UTF8: bool;
const PREFIX: &'static str;
const DATA_TYPE: DataType = _;
// Required method
fn validate(views: &[u128], buffers: &[Buffer]) -> Result<(), ArrowError>;
}
Expand description
A trait over the variable length bytes view array types
Required Associated Constants§
Provided Associated Constants§
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.