pub struct UpdateDocumentType {
pub name: Option<String>,
pub match_pattern: Option<String>,
pub matching_algorithm: Option<MatchAlgorithm>,
pub is_insensitive: Option<Option<bool>>,
pub owner: Option<Option<UserId>>,
}Fields§
§name: Option<String>Name of the document type.
match_pattern: Option<String>Matching pattern for the document type.
matching_algorithm: Option<MatchAlgorithm>Matching algorithm for the document type.
is_insensitive: Option<Option<bool>>Whether the document type matching is case-insensitive.
owner: Option<Option<UserId>>Owner of the document type.
Trait Implementations§
Source§impl Clone for UpdateDocumentType
impl Clone for UpdateDocumentType
Source§fn clone(&self) -> UpdateDocumentType
fn clone(&self) -> UpdateDocumentType
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 UpdateDocumentType
impl Debug for UpdateDocumentType
Source§impl Default for UpdateDocumentType
impl Default for UpdateDocumentType
Source§fn default() -> UpdateDocumentType
fn default() -> UpdateDocumentType
Returns the “default value” for a type. Read more
Source§impl Serialize for UpdateDocumentType
impl Serialize for UpdateDocumentType
Source§impl UpdateDto for UpdateDocumentType
impl UpdateDto for UpdateDocumentType
Source§type Id = DocumentTypeId
type Id = DocumentTypeId
The ID type for this item.
Source§type BaseType = DocumentType
type BaseType = DocumentType
The base type for the DTO.
Auto Trait Implementations§
impl Freeze for UpdateDocumentType
impl RefUnwindSafe for UpdateDocumentType
impl Send for UpdateDocumentType
impl Sync for UpdateDocumentType
impl Unpin for UpdateDocumentType
impl UnsafeUnpin for UpdateDocumentType
impl UnwindSafe for UpdateDocumentType
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