pub struct CollectionDocument {
pub file_id: String,
pub name: String,
pub size_bytes: Option<u64>,
pub content_type: Option<String>,
pub processing_status: Option<String>,
pub document_status: Option<String>,
pub indexed: Option<bool>,
pub created_at: Option<String>,
}Expand description
A document within a collection.
Fields§
§file_id: String§name: String§size_bytes: Option<u64>§content_type: Option<String>§processing_status: Option<String>§document_status: Option<String>§indexed: Option<bool>§created_at: Option<String>Trait Implementations§
Source§impl Clone for CollectionDocument
impl Clone for CollectionDocument
Source§fn clone(&self) -> CollectionDocument
fn clone(&self) -> CollectionDocument
Returns a duplicate 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 CollectionDocument
impl Debug for CollectionDocument
Source§impl<'de> Deserialize<'de> for CollectionDocument
impl<'de> Deserialize<'de> for CollectionDocument
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 CollectionDocument
impl RefUnwindSafe for CollectionDocument
impl Send for CollectionDocument
impl Sync for CollectionDocument
impl Unpin for CollectionDocument
impl UnsafeUnpin for CollectionDocument
impl UnwindSafe for CollectionDocument
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