pub struct CreateDocumentType {
pub name: String,
pub match_pattern: String,
pub matching_algorithm: MatchAlgorithm,
pub is_insensitive: Option<bool>,
pub owner: Option<UserId>,
}Fields§
§name: StringName of the document type.
match_pattern: StringMatching pattern for the document type.
matching_algorithm: MatchAlgorithmMatching algorithm for the document type.
is_insensitive: Option<bool>Whether the document type matching is case-insensitive.
owner: Option<UserId>Owner of the document type.
Trait Implementations§
Source§impl Clone for CreateDocumentType
impl Clone for CreateDocumentType
Source§fn clone(&self) -> CreateDocumentType
fn clone(&self) -> CreateDocumentType
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 CreateDocumentType
impl Debug for CreateDocumentType
Source§impl Default for CreateDocumentType
impl Default for CreateDocumentType
Source§fn default() -> CreateDocumentType
fn default() -> CreateDocumentType
Returns the “default value” for a type. Read more
Source§impl Serialize for CreateDocumentType
impl Serialize for CreateDocumentType
impl CreateDtoObject for CreateDocumentType
Auto Trait Implementations§
impl Freeze for CreateDocumentType
impl RefUnwindSafe for CreateDocumentType
impl Send for CreateDocumentType
impl Sync for CreateDocumentType
impl Unpin for CreateDocumentType
impl UnsafeUnpin for CreateDocumentType
impl UnwindSafe for CreateDocumentType
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