pub struct DocumentFile {
pub id: String,
pub name: String,
pub description: Option<String>,
pub kind: DocumentTypeRef,
pub name_1: String,
pub description_1: Option<String>,
}Fields§
§id: String§name: String§description: Option<String>§kind: DocumentTypeRef§name_1: String§description_1: Option<String>Trait Implementations§
Source§impl Clone for DocumentFile
impl Clone for DocumentFile
Source§fn clone(&self) -> DocumentFile
fn clone(&self) -> DocumentFile
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 DocumentFile
impl Debug for DocumentFile
Source§impl PartialEq for DocumentFile
impl PartialEq for DocumentFile
Source§fn eq(&self, other: &DocumentFile) -> bool
fn eq(&self, other: &DocumentFile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DocumentFile
Auto Trait Implementations§
impl Freeze for DocumentFile
impl RefUnwindSafe for DocumentFile
impl Send for DocumentFile
impl Sync for DocumentFile
impl Unpin for DocumentFile
impl UnsafeUnpin for DocumentFile
impl UnwindSafe for DocumentFile
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