Struct doxygen_rs::parser::NestedString
source · pub struct NestedString {
pub top: String,
pub sub: Vec<NestedString>,
}
Fields§
§top: String
§sub: Vec<NestedString>
Implementations§
source§impl NestedString
impl NestedString
pub fn new(top: String) -> Self
pub fn modify_sub(
self,
nesting_depth: usize,
sublist: bool,
line: String
) -> NestedString
Trait Implementations§
source§impl Clone for NestedString
impl Clone for NestedString
source§fn clone(&self) -> NestedString
fn clone(&self) -> NestedString
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NestedString
impl Debug for NestedString
source§impl Default for NestedString
impl Default for NestedString
source§fn default() -> NestedString
fn default() -> NestedString
Returns the “default value” for a type. Read more
source§impl Display for NestedString
impl Display for NestedString
source§impl PartialEq<NestedString> for NestedString
impl PartialEq<NestedString> for NestedString
source§fn eq(&self, other: &NestedString) -> bool
fn eq(&self, other: &NestedString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.