pub struct DocumentMeta {
pub id: String,
pub filename: String,
pub content_type: String,
pub size_bytes: i64,
pub content_hash: String,
pub conversion_status: String,
pub conversion_error: Option<String>,
pub created_at: String,
}Expand description
Full document metadata returned by GET /documents/{id}.
Fields§
§id: String§filename: String§content_type: String§size_bytes: i64§content_hash: String§conversion_status: String§conversion_error: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for DocumentMeta
impl Clone for DocumentMeta
Source§fn clone(&self) -> DocumentMeta
fn clone(&self) -> DocumentMeta
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 DocumentMeta
impl Debug for DocumentMeta
Source§impl<'de> Deserialize<'de> for DocumentMeta
impl<'de> Deserialize<'de> for DocumentMeta
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
Auto Trait Implementations§
impl Freeze for DocumentMeta
impl RefUnwindSafe for DocumentMeta
impl Send for DocumentMeta
impl Sync for DocumentMeta
impl Unpin for DocumentMeta
impl UnsafeUnpin for DocumentMeta
impl UnwindSafe for DocumentMeta
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