pub enum CoreTemplatePropertyKind<'a> {
String(Box<dyn TemplateProperty<Output = String> + 'a>),
StringList(Box<dyn TemplateProperty<Output = Vec<String>> + 'a>),
Boolean(Box<dyn TemplateProperty<Output = bool> + 'a>),
Integer(Box<dyn TemplateProperty<Output = i64> + 'a>),
Signature(Box<dyn TemplateProperty<Output = Signature> + 'a>),
Timestamp(Box<dyn TemplateProperty<Output = Timestamp> + 'a>),
TimestampRange(Box<dyn TemplateProperty<Output = TimestampRange> + 'a>),
Template(Box<dyn Template + 'a>),
ListTemplate(Box<dyn ListTemplate + 'a>),
}Variants§
String(Box<dyn TemplateProperty<Output = String> + 'a>)
StringList(Box<dyn TemplateProperty<Output = Vec<String>> + 'a>)
Boolean(Box<dyn TemplateProperty<Output = bool> + 'a>)
Integer(Box<dyn TemplateProperty<Output = i64> + 'a>)
Signature(Box<dyn TemplateProperty<Output = Signature> + 'a>)
Timestamp(Box<dyn TemplateProperty<Output = Timestamp> + 'a>)
TimestampRange(Box<dyn TemplateProperty<Output = TimestampRange> + 'a>)
Template(Box<dyn Template + 'a>)
ListTemplate(Box<dyn ListTemplate + 'a>)
Trait Implementations§
source§impl<'a> IntoTemplateProperty<'a> for CoreTemplatePropertyKind<'a>
impl<'a> IntoTemplateProperty<'a> for CoreTemplatePropertyKind<'a>
fn try_into_boolean( self ) -> Option<Box<dyn TemplateProperty<Output = bool> + 'a>>
fn try_into_integer( self ) -> Option<Box<dyn TemplateProperty<Output = i64> + 'a>>
fn try_into_plain_text( self ) -> Option<Box<dyn TemplateProperty<Output = String> + 'a>>
fn try_into_template(self) -> Option<Box<dyn Template + 'a>>
Auto Trait Implementations§
impl<'a> Freeze for CoreTemplatePropertyKind<'a>
impl<'a> !RefUnwindSafe for CoreTemplatePropertyKind<'a>
impl<'a> !Send for CoreTemplatePropertyKind<'a>
impl<'a> !Sync for CoreTemplatePropertyKind<'a>
impl<'a> Unpin for CoreTemplatePropertyKind<'a>
impl<'a> !UnwindSafe for CoreTemplatePropertyKind<'a>
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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