pub struct PatchTree<'mail> {
pub this: Mail<'mail>,
pub children: Vec<PatchTree<'mail>>,
pub selected: bool,
}
Expand description
A tree of patches that can be filtered to yield a PatchSet
Fields§
§this: Mail<'mail>
The current patch
children: Vec<PatchTree<'mail>>
All replies to this patch mail
selected: bool
Mark an email as selected
Implementations§
Auto Trait Implementations§
impl<'mail> Freeze for PatchTree<'mail>
impl<'mail> RefUnwindSafe for PatchTree<'mail>
impl<'mail> Send for PatchTree<'mail>
impl<'mail> Sync for PatchTree<'mail>
impl<'mail> Unpin for PatchTree<'mail>
impl<'mail> UnwindSafe for PatchTree<'mail>
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