pub struct BlobPreviewDTO {
pub output_hash: Option<String>,
pub output_bytes: Option<usize>,
pub content_type: Option<String>,
pub truncated: Option<bool>,
pub value: Option<Value>,
pub text: Option<String>,
pub error: Option<String>,
pub redacted: Option<bool>,
}Fields§
§output_hash: Option<String>§output_bytes: Option<usize>§content_type: Option<String>§truncated: Option<bool>§value: Option<Value>§text: Option<String>§error: Option<String>§redacted: Option<bool>Trait Implementations§
Source§impl Clone for BlobPreviewDTO
impl Clone for BlobPreviewDTO
Source§fn clone(&self) -> BlobPreviewDTO
fn clone(&self) -> BlobPreviewDTO
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BlobPreviewDTO
impl Debug for BlobPreviewDTO
Source§impl<'de> Deserialize<'de> for BlobPreviewDTO
impl<'de> Deserialize<'de> for BlobPreviewDTO
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 Eq for BlobPreviewDTO
Source§impl PartialEq for BlobPreviewDTO
impl PartialEq for BlobPreviewDTO
Source§fn eq(&self, other: &BlobPreviewDTO) -> bool
fn eq(&self, other: &BlobPreviewDTO) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BlobPreviewDTO
impl Serialize for BlobPreviewDTO
impl StructuralPartialEq for BlobPreviewDTO
Auto Trait Implementations§
impl Freeze for BlobPreviewDTO
impl RefUnwindSafe for BlobPreviewDTO
impl Send for BlobPreviewDTO
impl Sync for BlobPreviewDTO
impl Unpin for BlobPreviewDTO
impl UnsafeUnpin for BlobPreviewDTO
impl UnwindSafe for BlobPreviewDTO
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