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