Add allow(unused) for set_identifier function
This commit is contained in:
parent
d70f92f467
commit
f7a70796e2
1 changed files with 1 additions and 0 deletions
|
@ -21,6 +21,7 @@ static ID: OnceCell<String> = OnceCell::new();
|
|||
///
|
||||
/// # Errors
|
||||
/// If ID was already set this functions returns an error containing the ID as String.
|
||||
#[allow(unused)]
|
||||
pub fn set_identifier(identifier: &str) -> Result<(), String> {
|
||||
ID.set(identifier.to_string())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue