Struct handy_io::pattern::read::I32 [] [src]

pub struct I32;

A pattern associated to 32-bit signed integers.

Trait Implementations

impl<R: Read> ReadFrom<R> for I32
[src]

The future to read a value of the pattern from R.

Creates a future instance to read a value of the pattern from reader.

Creates a future instance to read a value of the pattern from reader. Read more

Scynchronously reading a value of the pattern from reader. Read more

Returns the boxed version of this pattern.

impl Debug for I32
[src]

Formats the value using the given formatter.

impl Clone for I32
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Pattern for I32
[src]

The value type associated to the pattern.

Takes a closure which maps a Result<Self::Value> to a pattern, and creates a pattern which calls that closure on the evaluation result of self. Read more

Takes a closure which maps a value to a pattern, and creates a pattern which calls that closure if the evaluation of self was succeeded. Read more

Takes a closure which maps an error to a pattern, and creates a pattern which calls that closure if the evaluation of self failed. Read more

Takes a closure which maps a value to another value, and creates a pattern which calls that closure on the evaluated value of self. Read more

Takes two patterns and creates a new pattern over both in sequence. Read more

Creates Repeat pattern to represent an infinite stream of this pattern.

impl Endian for I32
[src]

Indicates that "This is a little endian pattern".

Indicates that "This is a big endian pattern".