Struct xml::name::OwnedName

source ·
pub struct OwnedName {
    pub local_name: String,
    pub namespace: Option<String>,
    pub prefix: Option<String>,
}
Expand description

An owned variant of Name.

Everything about Name applies to this structure as well.

Fields§

§local_name: String

A local name, e.g. string in xsi:string.

§namespace: Option<String>

A namespace URI, e.g. http://www.w3.org/2000/xmlns/.

§prefix: Option<String>

A name prefix, e.g. xsi in xsi:string.

Implementations§

source§

impl OwnedName

source

pub fn borrow(&self) -> Name<'_>

Constructs a borrowed Name based on this owned name.

source

pub fn local<S>(local_name: S) -> OwnedName
where S: Into<String>,

Returns a new OwnedName instance representing a plain local name.

source

pub fn qualified<S1, S2, S3>( local_name: S1, namespace: S2, prefix: Option<S3> ) -> OwnedName
where S1: Into<String>, S2: Into<String>, S3: Into<String>,

Returns a new OwnedName instance representing a qualified name with or without a prefix and with a namespace URI.

source

pub fn prefix_ref(&self) -> Option<&str>

Returns an optional prefix by reference, equivalent to self.borrow().prefix but avoids extra work.

source

pub fn namespace_ref(&self) -> Option<&str>

Returns an optional namespace by reference, equivalen to self.borrow().namespace but avoids extra work.

Trait Implementations§

source§

impl Clone for OwnedName

source§

fn clone(&self) -> OwnedName

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for OwnedName

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for OwnedName

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<Name<'a>> for OwnedName

source§

fn from(n: Name<'a>) -> OwnedName

Converts to this type from the input type.
source§

impl FromStr for OwnedName

source§

fn from_str(s: &str) -> Result<OwnedName, ()>

Parses the given string slice into a qualified name.

This function, when finishes sucessfully, always return a qualified name without a namespace (name.namespace == None). It should be filled later using proper NamespaceStack.

It is supposed that all characters in the argument string are correct as defined by the XML specification. No additional checks except a check for emptiness are done.

§

type Err = ()

The associated error which can be returned from parsing.
source§

impl Hash for OwnedName

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for OwnedName

source§

fn eq(&self, other: &OwnedName) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for OwnedName

source§

impl StructuralPartialEq for OwnedName

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.