type Snapshot struct {
// Key is the key of the snapshot Key string// Kind is the kind of the snapshot (active, committed, view) Kind snapshot.Kind// Size is the size of the snapshot in bytes. Size uint64// Inodes is the number of inodes used by the snapshot Inodes uint64// Timestamp is latest update time (in nanoseconds) of the snapshot// information.
Timestamp int64
}
Snapshot contains the information about the snapshot.