pub enum SequenceConstructorInstruction {
Show 40 variants
AnalyzeString(Box<AnalyzeString>),
ApplyImports(Box<ApplyImports>),
ApplyTemplates(Box<ApplyTemplates>),
Assert(Box<Assert>),
Attribute(Box<Attribute>),
Break(Box<Break>),
CallTemplate(Box<CallTemplate>),
Choose(Box<Choose>),
Comment(Box<Comment>),
Copy(Box<Copy>),
CopyOf(Box<CopyOf>),
Document(Box<Document>),
Element(Box<Element>),
Evaluate(Box<Evaluate>),
Fallback(Box<Fallback>),
ForEach(Box<ForEach>),
ForEachGroup(Box<ForEachGroup>),
Fork(Box<Fork>),
If(Box<If>),
Iterate(Box<Iterate>),
Map(Box<Map>),
MapEntry(Box<MapEntry>),
Merge(Box<Merge>),
Message(Box<Message>),
Namespace(Box<Namespace>),
NextIteration(Box<NextIteration>),
NextMatch(Box<NextMatch>),
Number(Box<Number>),
OnEmpty(Box<OnEmpty>),
OnNonEmpty(Box<OnNonEmpty>),
PerformSort(Box<PerformSort>),
ProcessingInstruction(Box<ProcessingInstruction>),
ResultDocument(Box<ResultDocument>),
Sequence(Box<Sequence>),
SourceDocument(Box<SourceDocument>),
Text(Box<Text>),
Try(Box<Try>),
ValueOf(Box<ValueOf>),
Variable(Box<Variable>),
WherePopulated(Box<WherePopulated>),
}Variants§
AnalyzeString(Box<AnalyzeString>)
ApplyImports(Box<ApplyImports>)
ApplyTemplates(Box<ApplyTemplates>)
Assert(Box<Assert>)
Attribute(Box<Attribute>)
Break(Box<Break>)
CallTemplate(Box<CallTemplate>)
Choose(Box<Choose>)
Comment(Box<Comment>)
Copy(Box<Copy>)
CopyOf(Box<CopyOf>)
Document(Box<Document>)
Element(Box<Element>)
Evaluate(Box<Evaluate>)
Fallback(Box<Fallback>)
ForEach(Box<ForEach>)
ForEachGroup(Box<ForEachGroup>)
Fork(Box<Fork>)
If(Box<If>)
Iterate(Box<Iterate>)
Map(Box<Map>)
MapEntry(Box<MapEntry>)
Merge(Box<Merge>)
Message(Box<Message>)
Namespace(Box<Namespace>)
NextIteration(Box<NextIteration>)
NextMatch(Box<NextMatch>)
Number(Box<Number>)
OnEmpty(Box<OnEmpty>)
OnNonEmpty(Box<OnNonEmpty>)
PerformSort(Box<PerformSort>)
ProcessingInstruction(Box<ProcessingInstruction>)
ResultDocument(Box<ResultDocument>)
Sequence(Box<Sequence>)
SourceDocument(Box<SourceDocument>)
Text(Box<Text>)
Try(Box<Try>)
ValueOf(Box<ValueOf>)
Variable(Box<Variable>)
WherePopulated(Box<WherePopulated>)
Trait Implementations§
Source§impl Clone for SequenceConstructorInstruction
impl Clone for SequenceConstructorInstruction
Source§fn clone(&self) -> SequenceConstructorInstruction
fn clone(&self) -> SequenceConstructorInstruction
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<'_enum> From<&'_enum SequenceConstructorInstruction> for SequenceConstructorName
impl<'_enum> From<&'_enum SequenceConstructorInstruction> for SequenceConstructorName
Source§fn from(val: &'_enum SequenceConstructorInstruction) -> SequenceConstructorName
fn from(val: &'_enum SequenceConstructorInstruction) -> SequenceConstructorName
Converts to this type from the input type.
Source§impl From<SequenceConstructorInstruction> for SequenceConstructorItem
impl From<SequenceConstructorInstruction> for SequenceConstructorItem
Source§fn from(i: SequenceConstructorInstruction) -> Self
fn from(i: SequenceConstructorInstruction) -> Self
Converts to this type from the input type.
Source§impl From<SequenceConstructorInstruction> for SequenceConstructorName
impl From<SequenceConstructorInstruction> for SequenceConstructorName
Source§fn from(val: SequenceConstructorInstruction) -> SequenceConstructorName
fn from(val: SequenceConstructorInstruction) -> SequenceConstructorName
Converts to this type from the input type.
Source§impl IntoDiscriminant for SequenceConstructorInstruction
impl IntoDiscriminant for SequenceConstructorInstruction
Source§type Discriminant = SequenceConstructorName
type Discriminant = SequenceConstructorName
Enum listing the same variants as this enum but without any data fields
fn discriminant(&self) -> Self::Discriminant
Source§impl PartialEq for SequenceConstructorInstruction
impl PartialEq for SequenceConstructorInstruction
Source§fn eq(&self, other: &SequenceConstructorInstruction) -> bool
fn eq(&self, other: &SequenceConstructorInstruction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SequenceConstructorInstruction
impl StructuralPartialEq for SequenceConstructorInstruction
Auto Trait Implementations§
impl Freeze for SequenceConstructorInstruction
impl RefUnwindSafe for SequenceConstructorInstruction
impl Send for SequenceConstructorInstruction
impl Sync for SequenceConstructorInstruction
impl Unpin for SequenceConstructorInstruction
impl UnwindSafe for SequenceConstructorInstruction
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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