Struct nu_plugin_chart::ChartLine [−][src]
pub struct ChartLine {
pub reduction: Reduction,
pub columns: Columns,
pub eval: Option<Box<dyn Fn(usize, &Value) -> Result<Value, ShellError> + Send>>,
pub format: Option<String>,
}Fields
reduction: Reductioncolumns: Columnseval: Option<Box<dyn Fn(usize, &Value) -> Result<Value, ShellError> + Send>>format: Option<String>Implementations
impl SubCommand[src]
impl SubCommand[src]pub fn new() -> SubCommand[src]
Trait Implementations
impl Default for SubCommand[src]
impl Default for SubCommand[src]impl Plugin for SubCommand[src]
impl Plugin for SubCommand[src]fn config(&mut self) -> Result<Signature, ShellError>[src]
fn config(&mut self) -> Result<Signature, ShellError>[src]The config method is used to configure a plugin’s user interface / signature. Read more
fn sink(&mut self, call_info: CallInfo, input: Vec<Value>)[src]
fn sink(&mut self, call_info: CallInfo, input: Vec<Value>)[src]sink consumes the Values that are passed in, preventing further processing.
This method requires the plugin Signature to be configured without filtering. Read more
fn begin_filter(
&mut self,
_call_info: CallInfo
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>[src]
fn begin_filter(
&mut self,
_call_info: CallInfo
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>[src]begin_filter is the first method to be called if the Signature of the plugin is configured to be filterable.
Any setup required for the plugin such as parsing arguments from CallInfo or initializing data structures
can be done here. The CallInfo parameter will contain data configured in the config method of the Plugin trait. Read more
fn filter(
&mut self,
_input: Value
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>[src]
fn filter(
&mut self,
_input: Value
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>[src]filter is called for every Value that is processed by the plugin.
This method requires the plugin Signature to be configured as filterable. Read more
fn end_filter(
&mut self
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>[src]
fn end_filter(
&mut self
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>[src]end_filter is the last method to be called by the plugin after all Values are processed by the plugin.
This method requires the plugin Signature to be configured as filterable. Read more
fn quit(&mut self)[src]
Auto Trait Implementations
impl !RefUnwindSafe for SubCommand
impl Send for SubCommand
impl !Sync for SubCommand
impl Unpin for SubCommand
impl !UnwindSafe for SubCommand
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<T> SpannedItem for T[src]
impl<T> SpannedItem for T[src]impl<T> TaggedItem for T[src]
impl<T> TaggedItem for T[src]impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,