pub struct BlobRef {
pub blob_id: String,
pub content_type: String,
pub codec: Option<String>,
pub meta: Option<Value>,
}Expand description
Reference to content-addressed blob payloads stored out-of-line.
Fields§
§blob_id: String§content_type: String§codec: Option<String>§meta: Option<Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BlobRef
impl<'de> Deserialize<'de> for BlobRef
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
impl StructuralPartialEq for BlobRef
Auto Trait Implementations§
impl Freeze for BlobRef
impl RefUnwindSafe for BlobRef
impl Send for BlobRef
impl Sync for BlobRef
impl Unpin for BlobRef
impl UnsafeUnpin for BlobRef
impl UnwindSafe for BlobRef
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