pub enum SemanticChildResult {
List(PseudoListCore),
Single(PseudoValueCore),
Empty,
}Expand description
Result of get_semantic_child_value
Variants§
List(PseudoListCore)
A list of pseudo values (for collectors or multiple matches)
Single(PseudoValueCore)
A single pseudo value
Empty
No matching values found (not an error, just empty)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SemanticChildResult
impl RefUnwindSafe for SemanticChildResult
impl Send for SemanticChildResult
impl Sync for SemanticChildResult
impl Unpin for SemanticChildResult
impl UnsafeUnpin for SemanticChildResult
impl UnwindSafe for SemanticChildResult
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