Struct async_nats::jetstream::object_store::ObjectInfo
source · pub struct ObjectInfo {
pub name: String,
pub description: Option<String>,
pub link: Option<ObjectLink>,
pub bucket: String,
pub nuid: String,
pub size: usize,
pub chunks: usize,
pub modified: OffsetDateTime,
pub digest: String,
pub deleted: bool,
}
Expand description
Meta and instance information about an object.
Fields§
§name: String
Name of the object
description: Option<String>
A short human readable description of the object.
link: Option<ObjectLink>
Link this object points to, if any.
bucket: String
Name of the bucket the object is stored in.
nuid: String
Unique identifier used to uniquely identify this version of the object.
size: usize
Size in bytes of the object.
chunks: usize
Number of chunks the object is stored in.
modified: OffsetDateTime
Date and time the object was last modified.
digest: String
Digest of the object stream.
deleted: bool
Set to true if the object has been deleted.
Trait Implementations§
source§impl Clone for ObjectInfo
impl Clone for ObjectInfo
source§fn clone(&self) -> ObjectInfo
fn clone(&self) -> ObjectInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ObjectInfo
impl Debug for ObjectInfo
source§impl<'de> Deserialize<'de> for ObjectInfo
impl<'de> Deserialize<'de> for ObjectInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ObjectInfo> for ObjectInfo
impl PartialEq<ObjectInfo> for ObjectInfo
source§fn eq(&self, other: &ObjectInfo) -> bool
fn eq(&self, other: &ObjectInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.