pub enum StaticResult {
Scalar,
Array(i32, i32),
Range(i32, i32),
Unknown,
}Expand description
The result of the static analysis of a node
Variants§
Auto Trait Implementations§
impl Freeze for StaticResult
impl RefUnwindSafe for StaticResult
impl Send for StaticResult
impl Sync for StaticResult
impl Unpin for StaticResult
impl UnsafeUnpin for StaticResult
impl UnwindSafe for StaticResult
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