Add rust lint CI job.
All checks were successful
Check / Check Rust (pull_request) Successful in 21s
All checks were successful
Check / Check Rust (pull_request) Successful in 21s
This commit is contained in:
parent
311755c812
commit
4d9c237651
30 changed files with 177 additions and 108 deletions
|
|
@ -10,10 +10,12 @@ static mut YELLOWSTONE_INIT: Option<YellowstoneClient> = None;
|
|||
|
||||
pub fn from_init_endpoint() -> &'static mut YellowstoneClient {
|
||||
unsafe {
|
||||
if let None = YELLOWSTONE_INIT {
|
||||
#[allow(static_mut_refs)]
|
||||
if YELLOWSTONE_INIT.is_none() {
|
||||
YELLOWSTONE_INIT = Some(YellowstoneClient::new(Capability::take(INIT_ENDPOINT)));
|
||||
}
|
||||
|
||||
#[allow(static_mut_refs)]
|
||||
YELLOWSTONE_INIT.as_mut().unwrap()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue