pub enum OperationTemplatePropertyKind<'a> {
Operation(BoxedTemplateProperty<'a, Operation>),
OperationOpt(BoxedTemplateProperty<'a, Option<Operation>>),
OperationList(BoxedTemplateProperty<'a, Vec<Operation>>),
OperationId(BoxedTemplateProperty<'a, OperationId>),
}Expand description
Tagged union of the operation template property types.
Variants§
Operation(BoxedTemplateProperty<'a, Operation>)
OperationOpt(BoxedTemplateProperty<'a, Option<Operation>>)
OperationList(BoxedTemplateProperty<'a, Vec<Operation>>)
OperationId(BoxedTemplateProperty<'a, OperationId>)
Implementations§
Source§impl<'a> OperationTemplatePropertyKind<'a>
impl<'a> OperationTemplatePropertyKind<'a>
pub fn type_name(&self) -> &'static str
pub fn try_into_boolean(self) -> Option<BoxedTemplateProperty<'a, bool>>
pub fn try_into_integer(self) -> Option<BoxedTemplateProperty<'a, i64>>
pub fn try_into_stringify(self) -> Option<BoxedTemplateProperty<'a, String>>
pub fn try_into_serialize(self) -> Option<BoxedSerializeProperty<'a>>
pub fn try_into_template(self) -> Option<Box<dyn Template + 'a>>
pub fn try_into_eq(self, other: Self) -> Option<BoxedTemplateProperty<'a, bool>>
pub fn try_into_eq_core( self, other: CoreTemplatePropertyKind<'a>, ) -> Option<BoxedTemplateProperty<'a, bool>>
pub fn try_into_cmp( self, other: Self, ) -> Option<BoxedTemplateProperty<'a, Ordering>>
pub fn try_into_cmp_core( self, other: CoreTemplatePropertyKind<'a>, ) -> Option<BoxedTemplateProperty<'a, Ordering>>
Trait Implementations§
Source§impl<'a> WrapTemplateProperty<'a, Operation> for OperationTemplatePropertyKind<'a>
impl<'a> WrapTemplateProperty<'a, Operation> for OperationTemplatePropertyKind<'a>
fn wrap_property(property: BoxedTemplateProperty<'a, Operation>) -> Self
Source§impl<'a> WrapTemplateProperty<'a, OperationId> for OperationTemplatePropertyKind<'a>
impl<'a> WrapTemplateProperty<'a, OperationId> for OperationTemplatePropertyKind<'a>
fn wrap_property(property: BoxedTemplateProperty<'a, OperationId>) -> Self
Source§impl<'a> WrapTemplateProperty<'a, Option<Operation>> for OperationTemplatePropertyKind<'a>
impl<'a> WrapTemplateProperty<'a, Option<Operation>> for OperationTemplatePropertyKind<'a>
fn wrap_property(property: BoxedTemplateProperty<'a, Option<Operation>>) -> Self
Source§impl<'a> WrapTemplateProperty<'a, Vec<Operation>> for OperationTemplatePropertyKind<'a>
impl<'a> WrapTemplateProperty<'a, Vec<Operation>> for OperationTemplatePropertyKind<'a>
fn wrap_property(property: BoxedTemplateProperty<'a, Vec<Operation>>) -> Self
Auto Trait Implementations§
impl<'a> Freeze for OperationTemplatePropertyKind<'a>
impl<'a> !RefUnwindSafe for OperationTemplatePropertyKind<'a>
impl<'a> !Send for OperationTemplatePropertyKind<'a>
impl<'a> !Sync for OperationTemplatePropertyKind<'a>
impl<'a> Unpin for OperationTemplatePropertyKind<'a>
impl<'a> !UnwindSafe for OperationTemplatePropertyKind<'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