Struct nu_plugin_binaryview::BinaryView [−][src]
pub struct BinaryView;
Implementations
Trait Implementations
Returns the “default value” for a type. Read more
The config method is used to configure a plugin’s user interface / signature. Read more
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>
fn begin_filter(
&mut self,
_call_info: CallInfo
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>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>
fn filter(
&mut self,
_input: Value
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>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>
fn end_filter(
&mut self
) -> Result<Vec<Result<ReturnSuccess, ShellError>, Global>, ShellError>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
Auto Trait Implementations
impl RefUnwindSafe for BinaryViewimpl Send for BinaryViewimpl Sync for BinaryViewimpl Unpin for BinaryViewimpl UnwindSafe for BinaryView