pub struct UnhandledLitType<site> {
pub site: site,
}Expand description
Error for a literal that is not supported.
Lustre only has float, int, and bool literals, so e.g. a &str will trigger this error.
Fields§
§site: siteLocation of the literal.
Trait Implementations§
Auto Trait Implementations§
impl<site> Freeze for UnhandledLitType<site>where
site: Freeze,
impl<site> RefUnwindSafe for UnhandledLitType<site>where
site: RefUnwindSafe,
impl<site> Send for UnhandledLitType<site>where
site: Send,
impl<site> Sync for UnhandledLitType<site>where
site: Sync,
impl<site> Unpin for UnhandledLitType<site>where
site: Unpin,
impl<site> UnwindSafe for UnhandledLitType<site>where
site: UnwindSafe,
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