type github.com/go-redis/redis/v8.DurationCmd

16 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L493: type DurationCmd struct {
		command.go#L500: var _ Cmder = (*DurationCmd)(nil)
		command.go#L502: func NewDurationCmd(ctx context.Context, precision time.Duration, args ...interface{}) *DurationCmd {
		command.go#L503: 	return &DurationCmd{
		command.go#L512: func (cmd *DurationCmd) Val() time.Duration {
		command.go#L516: func (cmd *DurationCmd) Result() (time.Duration, error) {
		command.go#L520: func (cmd *DurationCmd) String() string {
		command.go#L524: func (cmd *DurationCmd) readReply(rd *proto.Reader) error {
		commands.go#L92: 	ObjectIdleTime(ctx context.Context, key string) *DurationCmd
		commands.go#L96: 	PTTL(ctx context.Context, key string) *DurationCmd
		commands.go#L106: 	TTL(ctx context.Context, key string) *DurationCmd
		commands.go#L512: func (c cmdable) ObjectIdleTime(ctx context.Context, key string) *DurationCmd {
		commands.go#L541: func (c cmdable) PTTL(ctx context.Context, key string) *DurationCmd {
		commands.go#L651: func (c cmdable) TTL(ctx context.Context, key string) *DurationCmd {
		result.go#L38: func NewDurationResult(val time.Duration, err error) *DurationCmd {
		result.go#L39: 	var cmd DurationCmd