storj/pkg/storage/meta/flags.go
Kaloyan Raev 7e136db9cf
Cleanup metadata across layers (#180)
* Cleanup metadata across layers

* Fix pointer db tests
2018-07-30 21:57:50 +03:00

23 lines
426 B
Go

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package meta
// Meta flags for the List method
const (
// None represents no meta flags
None = 0
// Modified meta flag
Modified = uint32(1 << iota)
// Expiration meta flag
Expiration
// Size meta flags
Size
// Checksum meta flag
Checksum
// UserDefined meta flag
UserDefined
// All represents all the meta flags
All = ^uint32(0)
)