[][src]Struct gdnative::XMLParser

pub struct XMLParser { /* fields omitted */ }

core class XMLParser inherits Reference (reference counted).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Memory management

The lifetime of this object is automatically managed through reference counting.

Class hierarchy

XMLParser inherits methods from:

Methods

impl XMLParser[src]

Constants

impl XMLParser[src]

pub fn new() -> XMLParser[src]

pub fn new_ref(&self) -> XMLParser[src]

Creates a new reference to the same reference-counted object.

pub fn get_attribute_count(&self) -> i64[src]

pub fn get_attribute_name(&self, idx: i64) -> GodotString[src]

pub fn get_attribute_value(&self, idx: i64) -> GodotString[src]

pub fn get_current_line(&self) -> i64[src]

pub fn get_named_attribute_value(&self, name: GodotString) -> GodotString[src]

pub fn get_named_attribute_value_safe(&self, name: GodotString) -> GodotString[src]

pub fn get_node_data(&self) -> GodotString[src]

pub fn get_node_name(&self) -> GodotString[src]

pub fn get_node_offset(&self) -> i64[src]

pub fn get_node_type(&mut self) -> XMLParserNodeType[src]

pub fn has_attribute(&self, name: GodotString) -> bool[src]

pub fn is_empty(&self) -> bool[src]

pub fn open(&mut self, file: GodotString) -> Result<(), GodotError>[src]

pub fn open_buffer(&mut self, buffer: ByteArray) -> Result<(), GodotError>[src]

pub fn read(&mut self) -> Result<(), GodotError>[src]

pub fn seek(&mut self, position: i64) -> Result<(), GodotError>[src]

pub fn skip_section(&mut self)[src]

pub fn init_ref(&mut self) -> bool[src]

Inherited from Reference.

pub fn to_reference(&self) -> Reference[src]

Up-cast.

pub fn to_object(&self) -> Object[src]

Up-cast.

pub fn cast<T>(&self) -> Option<T> where
    T: GodotObject
[src]

Generic dynamic cast.

Methods from Deref<Target = Reference>

pub fn new_ref(&self) -> Reference[src]

Creates a new reference to the same reference-counted object.

pub fn init_ref(&mut self) -> bool[src]

pub fn to_object(&self) -> Object[src]

Up-cast.

pub fn cast<T>(&self) -> Option<T> where
    T: GodotObject
[src]

Generic dynamic cast.

Trait Implementations

impl Clone for XMLParser[src]

impl Debug for XMLParser[src]

impl Deref for XMLParser[src]

type Target = Reference

The resulting type after dereferencing.

impl DerefMut for XMLParser[src]

impl Drop for XMLParser[src]

impl FromVariant for XMLParser[src]

impl GodotObject for XMLParser[src]

impl Instanciable for XMLParser[src]

impl ToVariant for XMLParser[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Export for T where
    T: GodotObject + ToVariant
[src]

type Hint = ()

A type-specific hint type that is valid for the type being exported.

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.