Trait zng::data_context::DataNoteValue

source ·
pub trait DataNoteValue:
    Debug
    + Display
    + Send
    + Sync
    + Any {
    // Required method
    fn as_any(&self) -> &(dyn Any + 'static);
}
Expand description

Represents a DataNote value.

§Trait Alias

This trait is used like a type alias for traits and is already implemented for all types it applies to.

Required Methods§

source

fn as_any(&self) -> &(dyn Any + 'static)

/// Access to dyn Any methods.

Implementors§

source§

impl<T> DataNoteValue for T
where T: Debug + Display + Send + Sync + Any + 'static,