pub struct MailTemplateCatalogBuilder { /* private fields */ }Expand description
Builder used by products to assemble a mail template catalog from multiple subsystems.
Implementations§
Source§impl MailTemplateCatalogBuilder
impl MailTemplateCatalogBuilder
Sourcepub fn register(
&mut self,
definition: &'static MailTemplateDefinition,
) -> &mut Self
pub fn register( &mut self, definition: &'static MailTemplateDefinition, ) -> &mut Self
Registers one template definition.
Sourcepub fn register_all(
&mut self,
definitions: &'static [MailTemplateDefinition],
) -> &mut Self
pub fn register_all( &mut self, definitions: &'static [MailTemplateDefinition], ) -> &mut Self
Registers all definitions from a static slice.
Sourcepub fn build(self) -> Result<MailTemplateCatalog, MailTemplateRegistryError>
pub fn build(self) -> Result<MailTemplateCatalog, MailTemplateRegistryError>
Builds a catalog after validating duplicate template codes and variable keys.
Trait Implementations§
Source§impl Clone for MailTemplateCatalogBuilder
impl Clone for MailTemplateCatalogBuilder
Source§fn clone(&self) -> MailTemplateCatalogBuilder
fn clone(&self) -> MailTemplateCatalogBuilder
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 MailTemplateCatalogBuilder
impl Debug for MailTemplateCatalogBuilder
Source§impl Default for MailTemplateCatalogBuilder
impl Default for MailTemplateCatalogBuilder
Source§fn default() -> MailTemplateCatalogBuilder
fn default() -> MailTemplateCatalogBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for MailTemplateCatalogBuilder
impl PartialEq for MailTemplateCatalogBuilder
Source§fn eq(&self, other: &MailTemplateCatalogBuilder) -> bool
fn eq(&self, other: &MailTemplateCatalogBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MailTemplateCatalogBuilder
impl StructuralPartialEq for MailTemplateCatalogBuilder
Auto Trait Implementations§
impl Freeze for MailTemplateCatalogBuilder
impl RefUnwindSafe for MailTemplateCatalogBuilder
impl Send for MailTemplateCatalogBuilder
impl Sync for MailTemplateCatalogBuilder
impl Unpin for MailTemplateCatalogBuilder
impl UnsafeUnpin for MailTemplateCatalogBuilder
impl UnwindSafe for MailTemplateCatalogBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more