Struct gdnative_core::StringArray [−][src]
pub struct StringArray(_);
A vector of GodotString that uses Godot's pool allocator.
Methods
impl StringArray[src]
impl StringArraypub fn new() -> Self[src]
pub fn new() -> SelfCreates an empty StringArray.
pub fn from_variant_array(array: &VariantArray) -> Self[src]
pub fn from_variant_array(array: &VariantArray) -> SelfCreates an array by trying to convert each variant.
See Variant::to_string_array.
pub fn push(&mut self, s: &GodotString)[src]
pub fn push(&mut self, s: &GodotString)Appends an element at the end of the array.
pub fn push_string_array(&mut self, strings: &StringArray)[src]
pub fn push_string_array(&mut self, strings: &StringArray)Appends a StringArray at the end of this array.
pub fn insert(&mut self, offset: i32, string: &GodotString) -> bool[src]
pub fn insert(&mut self, offset: i32, string: &GodotString) -> boolInsert a new GodotString at a given position in the array.
pub fn invert(&mut self)[src]
pub fn invert(&mut self)Inverts the order of the elements in the array.
pub fn remove(&mut self, idx: i32)[src]
pub fn remove(&mut self, idx: i32)Removes an element at the given offset.
pub fn resize(&mut self, size: i32)[src]
pub fn resize(&mut self, size: i32)Changes the size of the array, possibly removing elements or pushing default values.
pub fn get(&self, idx: i32) -> GodotString[src]
pub fn get(&self, idx: i32) -> GodotStringReturns a copy of the element at the given offset.
pub fn set(&mut self, idx: i32, string: &GodotString)[src]
pub fn set(&mut self, idx: i32, string: &GodotString)Sets the value of the element at the given offset.
pub fn len(&self) -> i32[src]
pub fn len(&self) -> i32Returns the number of elements in the array.
pub fn new_ref(&self) -> StringArray[src]
pub fn new_ref(&self) -> StringArrayTrait Implementations
impl Drop for StringArray[src]
impl Drop for StringArrayimpl Default for StringArray[src]
impl Default for StringArrayimpl ToVariant for StringArray[src]
impl ToVariant for StringArrayfn to_variant(&self) -> Variant[src]
fn to_variant(&self) -> Variantfn from_variant(variant: &Variant) -> Option<Self>[src]
fn from_variant(variant: &Variant) -> Option<Self>Auto Trait Implementations
impl Send for StringArray
impl Send for StringArrayimpl Sync for StringArray
impl Sync for StringArray