pub struct DocumentType {
pub id: u64,
pub slug: String,
pub name: String,
pub match_type: String,
pub matching_algorithm: u64,
pub is_insensitive: bool,
pub document_count: u64,
pub owner: u64,
pub user_can_change: bool,
}Fields§
§id: u64§slug: String§name: String§match_type: String§matching_algorithm: u64§is_insensitive: bool§document_count: u64§owner: u64§user_can_change: boolTrait Implementations§
Source§impl Debug for DocumentType
impl Debug for DocumentType
Source§impl<'de> Deserialize<'de> for DocumentType
impl<'de> Deserialize<'de> for DocumentType
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 DocumentType
impl RefUnwindSafe for DocumentType
impl Send for DocumentType
impl Sync for DocumentType
impl Unpin for DocumentType
impl UnwindSafe for DocumentType
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