Module Opendal_core.Seek_from

type seek_from =
  1. | Start of int64
    (*

    Start: Sets the offset to the provided number of bytes.

    *)
  2. | End of int64
    (*

    End: Sets the offset to the size of this object plus the specified number of bytes.

    It is possible to seek beyond the end of an object, but it's an error to seek before byte 0.

    *)
  3. | Current of int64
    (*

    Current: Sets the offset to the current position plus the specified number of bytes.

    It is possible to seek beyond the end of an object, but it's an error to seek before byte 0.

    *)