mirror of
https://github.com/vale981/ray
synced 2025-03-12 14:16:39 -04:00
20 lines
282 B
C
20 lines
282 B
C
![]() |
#ifndef OBJECT_H
|
||
|
#define OBJECT_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
/**
|
||
|
* Object information data structure.
|
||
|
*/
|
||
|
typedef struct {
|
||
|
object_id obj_id;
|
||
|
int64_t data_size;
|
||
|
int64_t metadata_size;
|
||
|
int64_t create_time;
|
||
|
int64_t construct_duration;
|
||
|
} object_info;
|
||
|
|
||
|
#endif
|