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: Option<String>,
pub deleted: bool,
}Expand description
Meta and instance information about an object.
Fields§
§name: StringName 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: StringName of the bucket the object is stored in.
nuid: StringUnique identifier used to uniquely identify this version of the object.
size: usizeSize in bytes of the object.
chunks: usizeNumber of chunks the object is stored in.
modified: OffsetDateTimeDate and time the object was last modified.
digest: Option<String>Digest of the object stream.
deleted: boolSet 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 ==.source§impl Serialize for ObjectInfo
impl Serialize for ObjectInfo
impl Eq for ObjectInfo
impl StructuralEq for ObjectInfo
impl StructuralPartialEq for ObjectInfo
Auto Trait Implementations§
impl RefUnwindSafe for ObjectInfo
impl Send for ObjectInfo
impl Sync for ObjectInfo
impl Unpin for ObjectInfo
impl UnwindSafe for ObjectInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more