pub struct TernarySearchTrie {
root: Option<Box<TSTNode>>,
}
Expand description
A Ternary Search Trie data structure.
Fields§
§root: Option<Box<TSTNode>>
Implementations§
source§impl TernarySearchTrie
impl TernarySearchTrie
sourcefn insert(&mut self, key: &str, value: &str)
fn insert(&mut self, key: &str, value: &str)
Insert a key-value pair into the trie.
Args: key (str): The key to insert. value (str): The value associated with the key.
source§impl TernarySearchTrie
impl TernarySearchTrie
fn insert_recursive( &mut self, node: Option<Box<TSTNode>>, key: &str, value: &str, d: usize ) -> Option<Box<TSTNode>>
fn search_recursive( &self, node: &Option<Box<TSTNode>>, key: &str, d: usize ) -> Option<String>
fn find_node<'a>( &self, node: &'a Option<Box<TSTNode>>, key: &str, d: usize ) -> Option<&'a Box<TSTNode>>
fn collect( &self, node: &Box<TSTNode>, prefix: &mut String, results: &mut HashMap<String, String> )
Trait Implementations§
source§impl HasPyGilRef for TernarySearchTrie
impl HasPyGilRef for TernarySearchTrie
§type AsRefTarget = PyCell<TernarySearchTrie>
type AsRefTarget = PyCell<TernarySearchTrie>
Utility type to make Py::as_ref work.
source§impl PyClass for TernarySearchTrie
impl PyClass for TernarySearchTrie
source§impl PyClassImpl for TernarySearchTrie
impl PyClassImpl for TernarySearchTrie
source§const IS_BASETYPE: bool = false
const IS_BASETYPE: bool = false
#[pyclass(subclass)]
source§const IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
#[pyclass(extends=…)]
source§const IS_MAPPING: bool = false
const IS_MAPPING: bool = false
#[pyclass(mapping)]
source§const IS_SEQUENCE: bool = false
const IS_SEQUENCE: bool = false
#[pyclass(sequence)]
§type ThreadChecker = SendablePyClass<TernarySearchTrie>
type ThreadChecker = SendablePyClass<TernarySearchTrie>
This handles following two situations: Read more
§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
Immutable or mutable
§type Dict = PyClassDummySlot
type Dict = PyClassDummySlot
Specify this class has
#[pyclass(dict)]
or not.§type WeakRef = PyClassDummySlot
type WeakRef = PyClassDummySlot
Specify this class has
#[pyclass(weakref)]
or not.§type BaseNativeType = PyAny
type BaseNativeType = PyAny
The closest native ancestor. This is
PyAny
by default, and when you declare
#[pyclass(extends=PyDict)]
, it’s PyDict
.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
fn dict_offset() -> Option<isize>
fn weaklist_offset() -> Option<isize>
source§impl PyClassNewTextSignature<TernarySearchTrie> for PyClassImplCollector<TernarySearchTrie>
impl PyClassNewTextSignature<TernarySearchTrie> for PyClassImplCollector<TernarySearchTrie>
fn new_text_signature(self) -> Option<&'static str>
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a TernarySearchTrie
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a TernarySearchTrie
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut TernarySearchTrie
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut TernarySearchTrie
source§impl PyMethods<TernarySearchTrie> for PyClassImplCollector<TernarySearchTrie>
impl PyMethods<TernarySearchTrie> for PyClassImplCollector<TernarySearchTrie>
fn py_methods(self) -> &'static PyClassItems
source§impl PyTypeInfo for TernarySearchTrie
impl PyTypeInfo for TernarySearchTrie
source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
source§fn type_object(py: Python<'_>) -> &PyType
fn type_object(py: Python<'_>) -> &PyType
👎Deprecated since 0.21.0:
PyTypeInfo::type_object
will be replaced by PyTypeInfo::type_object_bound
in a future PyO3 versionReturns the safe abstraction over the type object.
source§fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
source§fn is_type_of(object: &PyAny) -> bool
fn is_type_of(object: &PyAny) -> bool
👎Deprecated since 0.21.0:
PyTypeInfo::is_type_of
will be replaced by PyTypeInfo::is_type_of_bound
in a future PyO3 versionChecks if
object
is an instance of this type or a subclass of this type.source§fn is_type_of_bound(object: &Bound<'_, PyAny>) -> bool
fn is_type_of_bound(object: &Bound<'_, PyAny>) -> bool
Checks if
object
is an instance of this type or a subclass of this type.source§fn is_exact_type_of(object: &PyAny) -> bool
fn is_exact_type_of(object: &PyAny) -> bool
👎Deprecated since 0.21.0:
PyTypeInfo::is_exact_type_of
will be replaced by PyTypeInfo::is_exact_type_of_bound
in a future PyO3 versionChecks if
object
is an instance of this type.impl DerefToPyAny for TernarySearchTrie
Auto Trait Implementations§
impl Freeze for TernarySearchTrie
impl RefUnwindSafe for TernarySearchTrie
impl Send for TernarySearchTrie
impl Sync for TernarySearchTrie
impl Unpin for TernarySearchTrie
impl UnwindSafe for TernarySearchTrie
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more