pub enum FragmentMatcher {
Raw(String),
Signal {
value: String,
raw: bool,
},
Attribute(AttrMatcher),
Component(String),
ForLoop {
item: String,
collection: String,
template: String,
},
IfCond {
template: String,
},
}Expand description
Describes an expected fragment for assertion matching.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FragmentMatcher
impl RefUnwindSafe for FragmentMatcher
impl Send for FragmentMatcher
impl Sync for FragmentMatcher
impl Unpin for FragmentMatcher
impl UnsafeUnpin for FragmentMatcher
impl UnwindSafe for FragmentMatcher
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