Enum concordium_std::SeekFrom[][src]

pub enum SeekFrom {
    Start(u64),
    End(i64),
    Current(i64),
}
Expand description

This is the equivalent to the SeekFrom type from the rust standard library, but reproduced here to avoid dependency on std::io.

Variants

Start(u64)

Tuple Fields of Start

0: u64
End(i64)

Tuple Fields of End

0: i64
Current(i64)

Tuple Fields of Current

0: i64

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.