pub enum Flattened {
Html(String),
Deferred(Vec<Segment>),
}Expand description
What flattening produced. Both variants are normal outcomes — Deferred
means callback nodes are present and need splicing — so this is an enum
rather than a Result.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for Flattened
impl RefUnwindSafe for Flattened
impl Send for Flattened
impl Sync for Flattened
impl Unpin for Flattened
impl UnsafeUnpin for Flattened
impl UnwindSafe for Flattened
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