Enum clerk::SeekFrom [] [src]

pub enum SeekFrom<T: Into<Address>> {
    Home(u8),
    Current(u8),
    Line {
        line: T,
        bytes: u8,
    },
}

Enumeration of possible methods to seek within a Display object.

Variants

Sets the cursor position to Home plus the provided number of bytes.

Sets the cursor to the current position plus the specified number of bytes.

Sets the cursor position to the given line plus the specified number of bytes.

Fields of Line