pub struct BlobRef {
pub hash: BlobHash,
pub content_type: String,
pub size_bytes: u64,
pub created_at_timestamp: u64,
pub redaction_status: RedactionStatus,
pub encryption_status: String,
pub storage_backend: String,
pub preview_text_redacted: Option<String>,
}Fields§
§hash: BlobHash§content_type: String§size_bytes: u64§created_at_timestamp: u64§redaction_status: RedactionStatus§encryption_status: String§storage_backend: String§preview_text_redacted: Option<String>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