A seek operation.
enum Seek {
Cur(i64),
Data(i64),
End(i64),
Hole(i64),
Start(i64),
}| Name | Description |
|---|---|
| Cur | Seek from the current position in the file. |
| Data | Seek to the first non-hole byte at or after the specified offset. |
| End | Seek from the end of the file. |
| Hole | Seek to the first hole at or after the specified offset. |
| Start | Seek from the start of the file. |
| Name | Description |
|---|---|
| Clone | Objects that can be duplicated. |
| Copy | Objects that can safely be copied via |
| Eq | Objects that implement the binary |
| MaybeClone | Objects that can be duplicated. |