pub trait Typename {
    // Required method
    fn typename(&self) -> &'static str;
}
Expand description

Accessor method for the __typename special property of Trustfall vertices.

Required Methods§

source

fn typename(&self) -> &'static str

Returns the type name of this vertex in the Trustfall query graph.

Corresponds to the __typename special property of Trustfall vertices.

Implementors§