Trait ndarray_npy::WritableElement [−][src]
pub unsafe trait WritableElement: Sized { type Error: 'static + Error + Send + Sync; fn type_descriptor() -> PyValue; fn write<W: Write>(&self, writer: W) -> Result<(), Self::Error>; fn write_slice<W: Write>(
slice: &[Self],
writer: W
) -> Result<(), Self::Error>; }
An array element type that can be written to an .npy or .npz file.
Associated Types
Required Methods
fn type_descriptor() -> PyValue
Returns a descriptor of the type that can be used in the header.
fn write<W: Write>(&self, writer: W) -> Result<(), Self::Error>
Writes a single instance of Self to the writer.
fn write_slice<W: Write>(slice: &[Self], writer: W) -> Result<(), Self::Error>
Writes a slice of Self to the writer.
Implementations on Foreign Types
impl WritableElement for i8[src]
impl WritableElement for i8impl WritableElement for u8[src]
impl WritableElement for u8impl WritableElement for i16[src]
impl WritableElement for i16impl WritableElement for i32[src]
impl WritableElement for i32impl WritableElement for i64[src]
impl WritableElement for i64impl WritableElement for u16[src]
impl WritableElement for u16impl WritableElement for u32[src]
impl WritableElement for u32impl WritableElement for u64[src]
impl WritableElement for u64impl WritableElement for f32[src]
impl WritableElement for f32impl WritableElement for f64[src]
impl WritableElement for f64