Add allow(unused) for set_identifier function

This commit is contained in:
iam54r1n4 2023-01-22 13:58:34 -08:00
parent d70f92f467
commit f7a70796e2

View file

@ -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())
}