Trait sprs::num_matrixmarket::MatrixMarketRead

source ·
pub trait MatrixMarketRead: Sized {
    // Required method
    fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>;
}

Required Methods§

source

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl MatrixMarketRead for f32

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for f64

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for i8

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for i16

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for i32

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for i64

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for isize

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for u8

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for u16

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for u32

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for u64

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for usize

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for Complex<f32>

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

source§

impl MatrixMarketRead for Complex<f64>

source§

fn mm_read(r: &mut SplitWhitespace<'_>) -> Result<Self, IoError>

Implementors§