Struct nu_plugin_query_json::QueryJson [−][src]
Fields
query: Stringtag: TagImplementations
Trait Implementations
impl Plugin for QueryJson[src]
impl Plugin for QueryJson[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 begin_filter(
&mut self,
call_info: CallInfo
) -> Result<Vec<ReturnValue>, ShellError>[src]
fn begin_filter(
&mut self,
call_info: CallInfo
) -> Result<Vec<ReturnValue>, 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<ReturnValue>, ShellError>[src]
fn filter(&mut self, input: Value) -> Result<Vec<ReturnValue>, 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 sink(&mut self, _call_info: CallInfo, _input: Vec<Value, Global>)[src]
fn sink(&mut self, _call_info: CallInfo, _input: Vec<Value, Global>)[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 quit(&mut self)[src]
Auto Trait Implementations
impl RefUnwindSafe for QueryJson
impl Send for QueryJson
impl Sync for QueryJson
impl Unpin for QueryJson
impl UnwindSafe for QueryJson
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> 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>,