Struct async_nats::jetstream::object_store::ObjectLink
source · pub struct ObjectLink {
pub name: String,
pub bucket: Option<String>,
}
Expand description
A link to another object, potentially in another bucket.
Fields§
§name: String
Name of the object
bucket: Option<String>
Name of the bucket the object is stored in.
Trait Implementations§
source§impl Clone for ObjectLink
impl Clone for ObjectLink
source§fn clone(&self) -> ObjectLink
fn clone(&self) -> ObjectLink
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 ObjectLink
impl Debug for ObjectLink
source§impl Default for ObjectLink
impl Default for ObjectLink
source§fn default() -> ObjectLink
fn default() -> ObjectLink
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ObjectLink
impl<'de> Deserialize<'de> for ObjectLink
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<ObjectLink> for ObjectLink
impl PartialEq<ObjectLink> for ObjectLink
source§fn eq(&self, other: &ObjectLink) -> bool
fn eq(&self, other: &ObjectLink) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.