[−][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]
pub fn clone(&self) -> PositionalType[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PositionalType[src]
impl<'de> Deserialize<'de> for PositionalType[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for PositionalType[src]
impl PartialEq<PositionalType> for PositionalType[src]
pub fn eq(&self, other: &PositionalType) -> bool[src]
pub fn ne(&self, other: &PositionalType) -> bool[src]
impl PrettyDebug for PositionalType[src]
pub fn pretty(&self) -> DebugDocBuilder[src]
Prepare the PositionalType for pretty-printing
pub fn to_doc(&self) -> DebugDoc[src]
pub fn pretty_doc(
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>[src]
&self
) -> Doc<'static, BoxDoc<'static, ShellAnnotation>, ShellAnnotation>
pub fn pretty_builder(
&self
) -> DocBuilder<'static, BoxAllocator, ShellAnnotation>[src]
&self
) -> DocBuilder<'static, BoxAllocator, ShellAnnotation>
pub fn display(&self) -> String[src]
pub fn plain_string(&self, width: usize) -> String[src]
pub fn colored_string(&self, width: usize) -> String[src]
impl Serialize for PositionalType[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for PositionalType[src]
impl StructuralPartialEq for PositionalType[src]
Auto Trait Implementations
impl RefUnwindSafe for PositionalType[src]
impl Send for PositionalType[src]
impl Sync for PositionalType[src]
impl Unpin for PositionalType[src]
impl UnwindSafe for PositionalType[src]
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,
pub 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<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool[src]
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,
pub fn pretty_debug(&self, _source: &str) -> DebugDocBuilder[src]
pub fn refined_pretty_debug(
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder[src]
&self,
_refine: PrettyDebugRefineKind,
source: &str
) -> DebugDocBuilder
pub fn debug(&self, source: impl Into<Text>) -> String where
Self: Clone, [src]
Self: Clone,
pub fn debuggable(self, source: impl Into<Text>) -> DebuggableWithSource<Self>[src]
impl<T> SpannedItem for T[src]
pub fn spanned(self, span: impl Into<Span>) -> Spanned<Self>[src]
pub fn spanned_unknown(self) -> Spanned<Self>[src]
impl<T> TaggedItem for T[src]
pub fn tagged(self, tag: impl Into<Tag>) -> Tagged<Self>[src]
pub 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.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,