gremlin-client 0.8.10

A Rust client for Apache TinkerPop™
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, PartialEq, Clone)]
pub enum Scope {
    Global,
    Local,
}

impl Into<Scope> for () {
    fn into(self) -> Scope {
        Scope::Global
    }
}