question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Rust] constant variables as type

See original GitHub issue

I have some consts defined, and they are coloured as type

example: image

from: https://github.com/ghost-in-the-sushi/efficio-server/blob/997e203c53fc7868a84e4066aa8959bd9386c23c/src/db/sessions.rs#L24

INTERNAL_ERROR of error:INTERNAL_ERROR is like a type

INTERNAL_ERROR is defined here: https://github.com/ghost-in-the-sushi/efficio-server/blob/997e203c53fc7868a84e4066aa8959bd9386c23c/src/error.rs#L13

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

3reactions
EvgeniyPeshkovcommented, Jun 17, 2019

I’m sorry, I’ve closed this issue by accident. I didn’t know that GitHub does this automatically when you put something like fixes #17 in commit message (=. Highlighting of consts now looks like this: image While not breaking highlighting of enums: image This fix will be included in the next version.

0reactions
Geobertcommented, Jun 13, 2019

I haven’t take the time to test it yet ^^ I’ll keep you posted 😃

Read more comments on GitHub >

github_iconTop Results From Across the Web

constants - Rust By Example
Rust has two different types of constants which can be declared in any scope including global. Both require explicit type annotation:.
Read more >
Rust - Constant - Tutorialspoint
Rust - Constant, Constants represent values that cannot be changed. If you declare a constant then there is no way its value changes....
Read more >
const and static - The Rust Programming Language
Rust provides a 'global variable' sort of facility in static items. They're similar to constants, but static items aren't inlined upon use.
Read more >
Global constants | Rust by Example
Constants can be declared in the global scope using the static keyword, ... These variables have type signature &'static str , and are...
Read more >
Rust Variables & Constants Tutorial - KoderHQ
In languages like C, we have to specify the type when we declare or initialize a variable. In Rust however, the compiler will...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found