pub enum BlobKind {
DataTable,
TypedArray(TypedArrayElementKind),
Matrix,
}Variants§
DataTable
TypedArray(TypedArrayElementKind)
Raw typed array bytes (element type encoded separately).
Matrix
Raw f64 bytes in row-major order.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BlobKind
impl<'de> Deserialize<'de> for BlobKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BlobKind
impl RefUnwindSafe for BlobKind
impl Send for BlobKind
impl Sync for BlobKind
impl Unpin for BlobKind
impl UnsafeUnpin for BlobKind
impl UnwindSafe for BlobKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more