1 2 3 4 5 6 7 8
use gremlin_client::GKey; pub fn fmt(gkey: &GKey) -> String { match gkey { GKey::String(s) => s.to_string(), _ => todo!(), } }