Struct chandeliers_err::UnhandledLitType
source · 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> 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