[−][src]Enum nu_protocol::PositionalType
The type of positional arguments
Variants
Mandatory(String, SyntaxShape)A mandatory positional argument with the expected shape of the value
Optional(String, SyntaxShape)An optional positional argument with the expected shape of the value
Implementations
impl PositionalType[src]
pub fn mandatory(name: &str, ty: SyntaxShape) -> PositionalType[src]
Helper to create a mandatory positional argument type
pub fn mandatory_any(name: &str) -> PositionalType[src]
Helper to create a mandatory positional argument with an "any" type
pub fn mandatory_block(name: &str) -> PositionalType[src]
Helper to create a mandatory positional argument with a block type
pub fn optional(name: &str, ty: SyntaxShape) -> PositionalType[src]
Helper to create a optional positional argument type
pub fn optional_any(name: &str) -> PositionalType[src]
Helper to create a optional positional argument with an "any" type
pub fn name(&self) -> &str[src]
Gets the name of the positional argument
pub fn syntax_type(&self) -> SyntaxShape[src]
Gets the expected type of a positional argument
Trait Implementations
impl Clone for PositionalType[src]
fn clone(&self) -> PositionalType[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PositionalType[src]
impl<'de> Deserialize<'de> for PositionalType[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PrettyDebug for PositionalType[src]
fn pretty(&self) -> DebugDocBuilder[src]
Prepare the PositionalType for pretty-printing
fn to_doc(&self) -> DebugDoc[src]
fn pretty_doc(
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>[src]
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>
fn pretty_builder(&self) -> DocBuilder<'static, BoxAllocator, ShellAnnotation>[src]
fn display(&self) -> String[src]
fn plain_string(&self, width: usize) -> String[src]
fn colored_string(&self, width: usize) -> String[src]
impl Serialize for PositionalType[src]
Auto Trait Implementations
impl RefUnwindSafe for PositionalType
impl Send for PositionalType
impl Sync for PositionalType
impl Unpin for PositionalType
impl UnwindSafe for PositionalType
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]
T: PrettyDebug,
fn pretty_debug(&self, _source: &str) -> DebugDocBuilder[src]
fn refined_pretty_debug(
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder[src]
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder
fn debug(&self, source: impl Into<Text>) -> String where
Self: Clone, [src]
Self: Clone,
fn debuggable(self, source: impl Into<Text>) -> DebuggableWithSource<Self>[src]
impl<T> SpannedItem for T[src]
fn spanned(self, span: impl Into<Span>) -> Spanned<Self>[src]
fn spanned_unknown(self) -> Spanned<Self>[src]
impl<T> TaggedItem for T[src]
fn tagged(self, tag: impl Into<Tag>) -> Tagged<Self>[src]
fn tagged_unknown(self) -> Tagged<Self>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,