[−][src]Struct gdnative_core::Dictionary
A reference-counted Dictionary of Variant key-value pairs.
Implementations
impl Dictionary[src]
pub fn new() -> Self[src]
Creates an empty Dictionary.
pub fn is_empty(&self) -> bool[src]
Returns true if the Dictionary contains no elements.
pub fn len(&self) -> i32[src]
Returns the number of elements in the Dictionary.
pub fn clear(&mut self)[src]
Clears the Dictionary, removing all key-value pairs.
pub fn contains(&self, key: &Variant) -> bool[src]
Returns true if the Dictionary contains the specified key.
pub fn contains_all(&self, keys: &VariantArray) -> bool[src]
Returns true if the Dictionary has all of the keys in the given array.
pub fn erase(&mut self, key: &Variant)[src]
Erase a key-value pair in the Dictionary by the specified key.
pub fn get(&self, key: &Variant) -> Variant[src]
Returns a copy of the value corresponding to the key.
pub fn set(&mut self, key: &Variant, val: &Variant)[src]
Sets a value to the element corresponding to the key.
pub fn get_ref(&self, key: &Variant) -> &Variant[src]
Returns a reference to the value corresponding to the key.
pub fn get_mut_ref(&mut self, key: &Variant) -> &mut Variant[src]
Returns a mutable reference to the value corresponding to the key.
pub fn to_json(&self) -> GodotString[src]
Returns a GodotString of the Dictionary.
pub fn keys(&self) -> VariantArray[src]
Returns an array of the keys in the Dictionary.
pub fn values(&self) -> VariantArray[src]
Returns an array of the values in the Dictionary.
pub fn get_next(&self, key: &Variant) -> &Variant[src]
pub fn hash(&self) -> i32[src]
Return a hashed i32 value representing the dictionary's contents.
pub fn new_ref(&self) -> Dictionary[src]
Creates a new reference to this reference-counted instance.
Trait Implementations
impl Debug for Dictionary[src]
impl Default for Dictionary[src]
impl Drop for Dictionary[src]
impl Eq for Dictionary[src]
impl Export for Dictionary[src]
type Hint = ()
A type-specific hint type that is valid for the type being exported.
fn export_info(_hint: Option<Self::Hint>) -> ExportInfo[src]
impl<'l> From<&'l Dictionary> for Variant[src]
fn from(val: &'l Dictionary) -> Variant[src]
impl FromVariant for Dictionary[src]
fn from_variant(variant: &Variant) -> Result<Self, FromVariantError>[src]
impl PartialEq<Dictionary> for Dictionary[src]
impl ToVariant for Dictionary[src]
fn to_variant(&self) -> Variant[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> 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> Export for T where
T: GodotObject + ToVariant, [src]
T: GodotObject + ToVariant,
type Hint = ()
A type-specific hint type that is valid for the type being exported.
fn export_info(Option<<T as Export>::Hint>) -> ExportInfo[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, 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>,