Struct nu_protocol::value::dict::Dictionary [−][src]
Expand description
A dictionary that can hold a mapping from names to Values
Fields
entries: IndexMap<String, Value>Implementations
impl Dictionary[src]
impl Dictionary[src]impl Dictionary[src]
impl Dictionary[src]pub fn get_data(&self, desc: &str) -> MaybeOwned<'_, Value>[src]
pub fn get_data(&self, desc: &str) -> MaybeOwned<'_, Value>[src]Find the matching Value for a given key, if possible. If not, return a Primitive::Nothing
pub fn insert(&mut self, key: String, value: Value) -> Option<Value>[src]
pub fn merge_from(&self, other: &Dictionary) -> Dictionary[src]
pub fn contains_key(&self, key: &str) -> bool[src]
pub fn contains_key(&self, key: &str) -> bool[src]Checks if given key exists
pub fn get_data_by_key(&self, name: Spanned<&str>) -> Option<Value>[src]
pub fn get_data_by_key(&self, name: Spanned<&str>) -> Option<Value>[src]Find the matching Value for a key, if possible
pub fn get_mut_data_by_key(&mut self, name: &str) -> Option<&mut Value>[src]
pub fn get_mut_data_by_key(&mut self, name: &str) -> Option<&mut Value>[src]Get a mutable entry that matches a key, if possible
pub fn insert_data_at_key(&mut self, name: &str, value: Value)[src]
pub fn insert_data_at_key(&mut self, name: &str, value: Value)[src]Insert a new key/value pair into the dictionary
Trait Implementations
impl Clone for Dictionary[src]
impl Clone for Dictionary[src]fn clone(&self) -> Dictionary[src]
fn clone(&self) -> Dictionary[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for Dictionary[src]
impl Debug for Dictionary[src]impl Default for Dictionary[src]
impl Default for Dictionary[src]fn default() -> Dictionary[src]
fn default() -> Dictionary[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for Dictionary[src]
impl<'de> Deserialize<'de> for Dictionary[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl From<IndexMap<String, Value, RandomState>> for Dictionary[src]
impl From<IndexMap<String, Value, RandomState>> for Dictionary[src]impl Hash for Dictionary[src]
impl Hash for Dictionary[src]impl Ord for Dictionary[src]
impl Ord for Dictionary[src]fn cmp(&self, other: &Dictionary) -> Ordering[src]
fn cmp(&self, other: &Dictionary) -> Ordering[src]Compare two dictionaries for ordering
impl PartialEq<Dictionary> for Dictionary[src]
impl PartialEq<Dictionary> for Dictionary[src]fn eq(&self, other: &Dictionary) -> bool[src]
fn eq(&self, other: &Dictionary) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &Dictionary) -> bool[src]
fn ne(&self, other: &Dictionary) -> bool[src]This method tests for !=.
impl PartialEq<Value> for Dictionary[src]
impl PartialEq<Value> for Dictionary[src]impl PartialOrd<Dictionary> for Dictionary[src]
impl PartialOrd<Dictionary> for Dictionary[src]fn partial_cmp(&self, other: &Dictionary) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Dictionary) -> Option<Ordering>[src]Compare two dictionaries for sort ordering
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl PrettyDebug for Dictionary[src]
impl PrettyDebug for Dictionary[src]fn pretty(&self) -> DebugDocBuilder[src]
fn pretty(&self) -> DebugDocBuilder[src]Get a Dictionary ready to be pretty-printed
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 display(&self) -> String[src]A convenience method that prints out the document without colors in 70 columns. Generally, you should use plain_string or colored_string if possible, but display() can be useful for trace lines and things like that, where you don’t have control over the terminal. Read more
fn plain_string(&self, width: usize) -> String[src]
fn colored_string(&self, width: usize) -> String[src]
impl Serialize for Dictionary[src]
impl Serialize for Dictionary[src]impl<'a> TryFrom<&'a Value> for &'a Dictionary[src]
impl<'a> TryFrom<&'a Value> for &'a Dictionary[src]fn try_from(value: &'a Value) -> Result<&'a Dictionary, ShellError>[src]
fn try_from(value: &'a Value) -> Result<&'a Dictionary, ShellError>[src]Convert to a dictionary, if possible
type Error = ShellError
type Error = ShellErrorThe type returned in the event of a conversion error.
impl Eq for Dictionary[src]
impl StructuralEq for Dictionary[src]
impl StructuralPartialEq for Dictionary[src]
Auto Trait Implementations
impl RefUnwindSafe for Dictionary
impl Send for Dictionary
impl Sync for Dictionary
impl Unpin for Dictionary
impl UnwindSafe for Dictionary
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<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]
impl<T> PrettyDebugWithSource for T where
T: PrettyDebug, [src]pub 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]
impl<T> SpannedItem for T[src]impl<T> TaggedItem for T[src]
impl<T> TaggedItem for T[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,