# Functions
New creates a new DB instance.
WithFilter is a function that returns a QueryOption that adds a FilterFunc to the Filters field of a QueryOptions.
WithLimit is a function that returns a QueryOption that sets the Limit field of a QueryOptions.
WithOffset is a function that returns a QueryOption that sets the Offset field of a QueryOptions.
WithOrderBy is a function that returns a QueryOption that sets the OrderBy field of a QueryOptions.
# Structs
DB is a struct that represents a database connection.
QueryOptions is a struct that holds options for a query.
# Interfaces
Store is an interface that defines the methods that a dbench store should implement.
# Type aliases
FilterFunc is a type that defines a function that modifies a BenchmarkQuery.
QueryOption is a type that defines a function that modifies a QueryOptions.