[][src]Enum nu::Value

pub enum Value {
    Primitive(Primitive),
    Object(Dictionary),
    Binary(Vec<u8>),
    List(Vec<Spanned<Value>>),
    Block(Block),
}

Variants

Primitive(Primitive)Object(Dictionary)Binary(Vec<u8>)List(Vec<Spanned<Value>>)Block(Block)

Methods

impl Value[src]

pub fn data_descriptors(&self) -> Vec<String>[src]

pub fn get_data<'a>(&'a self, desc: &String) -> MaybeOwned<'a, Value>[src]

pub fn string(s: impl Into<String>) -> Value[src]

pub fn bytes(s: impl Into<u64>) -> Value[src]

pub fn int(s: impl Into<i64>) -> Value[src]

pub fn float(s: impl Into<OF64>) -> Value[src]

pub fn boolean(s: impl Into<bool>) -> Value[src]

pub fn system_date(s: SystemTime) -> Value[src]

pub fn date_from_str(s: &str) -> Result<Value, ShellError>[src]

pub fn nothing() -> Value[src]

Trait Implementations

impl From<Primitive> for Value[src]

impl From<String> for Value[src]

impl PartialEq<Value> for Value[src]

impl Clone for Value[src]

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

Performs copy-assignment from source. Read more

impl PartialOrd<Value> for Value[src]

impl Eq for Value[src]

impl Ord for Value[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 Debug for Value[src]

impl Serialize for Value[src]

impl<'de> Deserialize<'de> for Value[src]

Auto Trait Implementations

impl Unpin for Value

impl Sync for Value

impl Send for Value

impl RefUnwindSafe for Value

impl UnwindSafe for Value

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]