pub trait Server {
Show 15 methods fn create_vertex(
        &mut self,
        _: CreateVertexParams,
        _: CreateVertexResults
    ) -> Promise<(), Error> { ... } fn create_vertex_from_type(
        &mut self,
        _: CreateVertexFromTypeParams,
        _: CreateVertexFromTypeResults
    ) -> Promise<(), Error> { ... } fn get_vertices(
        &mut self,
        _: GetVerticesParams,
        _: GetVerticesResults
    ) -> Promise<(), Error> { ... } fn delete_vertices(
        &mut self,
        _: DeleteVerticesParams,
        _: DeleteVerticesResults
    ) -> Promise<(), Error> { ... } fn get_vertex_count(
        &mut self,
        _: GetVertexCountParams,
        _: GetVertexCountResults
    ) -> Promise<(), Error> { ... } fn create_edge(
        &mut self,
        _: CreateEdgeParams,
        _: CreateEdgeResults
    ) -> Promise<(), Error> { ... } fn get_edges(
        &mut self,
        _: GetEdgesParams,
        _: GetEdgesResults
    ) -> Promise<(), Error> { ... } fn delete_edges(
        &mut self,
        _: DeleteEdgesParams,
        _: DeleteEdgesResults
    ) -> Promise<(), Error> { ... } fn get_edge_count(
        &mut self,
        _: GetEdgeCountParams,
        _: GetEdgeCountResults
    ) -> Promise<(), Error> { ... } fn get_vertex_properties(
        &mut self,
        _: GetVertexPropertiesParams,
        _: GetVertexPropertiesResults
    ) -> Promise<(), Error> { ... } fn set_vertex_properties(
        &mut self,
        _: SetVertexPropertiesParams,
        _: SetVertexPropertiesResults
    ) -> Promise<(), Error> { ... } fn delete_vertex_properties(
        &mut self,
        _: DeleteVertexPropertiesParams,
        _: DeleteVertexPropertiesResults
    ) -> Promise<(), Error> { ... } fn get_edge_properties(
        &mut self,
        _: GetEdgePropertiesParams,
        _: GetEdgePropertiesResults
    ) -> Promise<(), Error> { ... } fn set_edge_properties(
        &mut self,
        _: SetEdgePropertiesParams,
        _: SetEdgePropertiesResults
    ) -> Promise<(), Error> { ... } fn delete_edge_properties(
        &mut self,
        _: DeleteEdgePropertiesParams,
        _: DeleteEdgePropertiesResults
    ) -> Promise<(), Error> { ... }
}

Provided Methods

Implementors