/// Generate a unique ID string with the given prefix.
pubfnunique_id(prefix:&str)-> String{usestd::sync::atomic::{AtomicU64, Ordering};staticCOUNTER: AtomicU64 =AtomicU64::new(0);let id =COUNTER.fetch_add(1,Ordering::Relaxed);format!("{}{}", prefix, id)}