pub enum FragmentGenerationIssue {
Literal(GeneratedLiteralRefusal),
Unbounded,
}Expand description
Why one preserved captured fragment could not become a generated tree.
Variants§
Literal(GeneratedLiteralRefusal)
One captured literal could not enter its generated literal form.
Unbounded
The generated tree would exceed its declared token magnitude.
Trait Implementations§
Source§impl Clone for FragmentGenerationIssue
impl Clone for FragmentGenerationIssue
Source§fn clone(&self) -> FragmentGenerationIssue
fn clone(&self) -> FragmentGenerationIssue
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 moreimpl Copy for FragmentGenerationIssue
Source§impl Debug for FragmentGenerationIssue
impl Debug for FragmentGenerationIssue
Source§impl Display for FragmentGenerationIssue
impl Display for FragmentGenerationIssue
impl Eq for FragmentGenerationIssue
Source§impl Hash for FragmentGenerationIssue
impl Hash for FragmentGenerationIssue
Source§impl PartialEq for FragmentGenerationIssue
impl PartialEq for FragmentGenerationIssue
impl StructuralPartialEq for FragmentGenerationIssue
Auto Trait Implementations§
impl Freeze for FragmentGenerationIssue
impl RefUnwindSafe for FragmentGenerationIssue
impl Send for FragmentGenerationIssue
impl Sync for FragmentGenerationIssue
impl Unpin for FragmentGenerationIssue
impl UnsafeUnpin for FragmentGenerationIssue
impl UnwindSafe for FragmentGenerationIssue
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