pub struct EffectMeta {
pub label: String,
pub children: Vec<EffectMeta>,
}Expand description
Diagnostic tree describing a live effect and nested effects it owns.
Fields§
§label: StringHuman-readable effect label.
children: Vec<EffectMeta>Nested effect metadata.
Implementations§
Trait Implementations§
Source§impl Clone for EffectMeta
impl Clone for EffectMeta
Source§fn clone(&self) -> EffectMeta
fn clone(&self) -> EffectMeta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectMeta
impl Debug for EffectMeta
impl Eq for EffectMeta
Source§impl PartialEq for EffectMeta
impl PartialEq for EffectMeta
impl StructuralPartialEq for EffectMeta
Auto Trait Implementations§
impl Freeze for EffectMeta
impl RefUnwindSafe for EffectMeta
impl Send for EffectMeta
impl Sync for EffectMeta
impl Unpin for EffectMeta
impl UnsafeUnpin for EffectMeta
impl UnwindSafe for EffectMeta
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