pub enum VizAction {
ExpandSeed {
target_id: u32,
txt: String,
seeds: Vec<(u32, String)>,
},
CollapseNode {
target_id: u32,
txt: String,
},
InfoCard {
info_header: String,
info_txt: String,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VizAction
impl RefUnwindSafe for VizAction
impl Send for VizAction
impl Sync for VizAction
impl Unpin for VizAction
impl UnwindSafe for VizAction
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