pub struct KeysListConstructor { /* private fields */ }Implementations§
Source§impl KeysListConstructor
impl KeysListConstructor
Sourcepub fn builder() -> KeysListConstructorBuilder
pub fn builder() -> KeysListConstructorBuilder
Create an instance of KeysListConstructor using the builder syntax
Source§impl KeysListConstructor
impl KeysListConstructor
Sourcepub fn empty() -> KeysListNode
pub fn empty() -> KeysListNode
Create an empty node (base case for recursion)
Sourcepub fn build(self) -> KeysListNode
pub fn build(self) -> KeysListNode
Create a node with children (recursive case)
Auto Trait Implementations§
impl Freeze for KeysListConstructor
impl RefUnwindSafe for KeysListConstructor
impl Send for KeysListConstructor
impl Sync for KeysListConstructor
impl Unpin for KeysListConstructor
impl UnwindSafe for KeysListConstructor
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