Trait Write

Source
pub trait Write: Read {
    // Required method
    fn write(&mut self, values: Self::Output);
}

Required Methods§

Source

fn write(&mut self, values: Self::Output)

Implementations on Foreign Types§

Source§

impl<T> Write for &mut [T]
where T: Copy + Debug,

Source§

fn write(&mut self, values: <&mut [T] as Read>::Output)

Source§

impl<T> Write for &mut T
where T: Copy + Debug,

Source§

fn write(&mut self, values: <&mut T as Read>::Output)

Implementors§

Source§

impl<E: Entity, S: Simd> Write for faer_core::group_helpers::PrefixMut<'_, E, S>

Source§

impl<E: Entity, S: Simd> Write for faer_core::group_helpers::SuffixMut<'_, E, S>

Source§

impl<E: Entity, T: Copy + Debug> Write for RefGroupMut<'_, E, T>

Source§

impl<S> Write for pulp::PrefixMut<'_, f32, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, f64, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, i32, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, i64, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, u32, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, u64, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, Complex<f32>, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::PrefixMut<'_, Complex<f64>, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, f32, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, f64, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, i32, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, i64, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, u32, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, u64, S, <S as Simd>::m64s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, Complex<f32>, S, <S as Simd>::m32s>
where S: Simd,

Source§

impl<S> Write for pulp::SuffixMut<'_, Complex<f64>, S, <S as Simd>::m64s>
where S: Simd,