Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
b547ece9
Commit
b547ece9
authored
6 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge branch 'pr_883_squashed'
parents
fdee4dd5
0ebe2901
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/HACKING/CodingStandardsRust.md
+3
-3
3 additions, 3 deletions
doc/HACKING/CodingStandardsRust.md
with
3 additions
and
3 deletions
doc/HACKING/CodingStandardsRust.md
+
3
−
3
View file @
b547ece9
...
...
@@ -256,7 +256,7 @@ Here are some additional bits of advice and rules:
or 2) should fail (i.e. in a unittest).
You SHOULD NOT use
`unwrap()`
anywhere in which it is possible to handle the
potential error with
either
`expect()`
or
the eel operator,
`?`
.
potential error with the eel operator,
`?`
or another non panicking way
.
For example, consider a function which parses a string into an integer:
fn parse_port_number(config_string: &str) -> u16 {
...
...
@@ -264,12 +264,12 @@ Here are some additional bits of advice and rules:
}
There are numerous ways this can fail, and the
`unwrap()`
will cause the
whole program to byte the dust! Instead, either you SHOULD use
`
expect
()`
whole program to byte the dust! Instead, either you SHOULD use
`
ok
()`
(or another equivalent function which will return an
`Option`
or a
`Result`
)
and change the return type to be compatible:
fn parse_port_number(config_string: &str) -> Option<u16> {
u16::from_str_radix(config_string, 10).
expect("Couldn't parse port into a u16"
)
u16::from_str_radix(config_string, 10).
ok(
)
}
or you SHOULD use
`or()`
(or another similar method):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment