pub struct SymbolicName {
pub names: Vec<String>,
}Expand description
Symbolic name.
Fields§
§names: Vec<String>Name alternatives.
Trait Implementations§
Source§impl Clone for SymbolicName
impl Clone for SymbolicName
Source§fn clone(&self) -> SymbolicName
fn clone(&self) -> SymbolicName
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SymbolicName
impl Debug for SymbolicName
Source§impl FromValue for SymbolicName
impl FromValue for SymbolicName
Source§fn from_value(
_node: &Node<'_, '_>,
_attr: &str,
v: &str,
) -> Result<SymbolicName, XmlError>
fn from_value( _node: &Node<'_, '_>, _attr: &str, v: &str, ) -> Result<SymbolicName, XmlError>
Load Self from the body of a node.
v is the value being parsed, attr and node are
given for context and error handling.Auto Trait Implementations§
impl Freeze for SymbolicName
impl RefUnwindSafe for SymbolicName
impl Send for SymbolicName
impl Sync for SymbolicName
impl Unpin for SymbolicName
impl UnsafeUnpin for SymbolicName
impl UnwindSafe for SymbolicName
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more