pub struct ParentAndChild {
pub parent: String,
pub children: Vec<String>,
}Expand description
Represents a parent line and its associated child lines.
Fields§
§parent: String§children: Vec<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParentAndChild
impl RefUnwindSafe for ParentAndChild
impl Send for ParentAndChild
impl Sync for ParentAndChild
impl Unpin for ParentAndChild
impl UnwindSafe for ParentAndChild
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