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