[][src]Struct nu::Spanned

pub struct Spanned<T> {
    pub span: Span,
    pub item: T,
}

Fields

span: Spanitem: T

Methods

impl<T: Into<Value>> Spanned<T>[src]

impl<T> Spanned<T>[src]

pub fn new(span: Span, item: T) -> Self[src]

Constructs a new Spanned.

impl<T> Spanned<T>[src]

pub fn spanned(self, span: impl Into<Span>) -> Spanned<T>[src]

impl<T> Spanned<T>[src]

pub fn source(&self, source: &Text) -> Text[src]

impl Spanned<RawToken>[src]

pub fn debug<'a>(&self, source: &'a Text) -> DebugToken<'a>[src]

Trait Implementations

impl From<Spanned<Value>> for ReturnValue[src]

impl From<Spanned<Path>> for Spanned<RawExpression>[src]

impl<T: PartialEq> PartialEq<Spanned<T>> for Spanned<T>[src]

impl<T: Clone> Clone for Spanned<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: PartialOrd> PartialOrd<Spanned<T>> for Spanned<T>[src]

impl<T: Eq> Eq for Spanned<T>[src]

impl<T: Ord> Ord for Spanned<T>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<T: Copy> Copy for Spanned<T>[src]

impl<T> Deref for Spanned<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Debug> Debug for Spanned<T>[src]

impl<'a> TryFrom<&'a Spanned<Value>> for i64[src]

type Error = ShellError

The type returned in the event of a conversion error.

impl<T: Hash> Hash for Spanned<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T> Serialize for Spanned<T> where
    T: Serialize
[src]

impl<'de, T> Deserialize<'de> for Spanned<T> where
    T: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<T> Unpin for Spanned<T> where
    T: Unpin

impl<T> Sync for Spanned<T> where
    T: Sync

impl<T> Send for Spanned<T> where
    T: Send

impl<T> RefUnwindSafe for Spanned<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for Spanned<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]