[−][src]Struct kuchiki::Attributes
Convenience wrapper around a btreemap that adds method for attributes in the null namespace.
Fields
map: BTreeMap<ExpandedName, Attribute>
A map of attributes whose name can have namespaces.
Methods
impl Attributes
[src]
pub fn contains<A: Into<LocalName>>(&self, local_name: A) -> bool
[src]
Like BTreeMap::contains
pub fn get<A: Into<LocalName>>(&self, local_name: A) -> Option<&str>
[src]
Like BTreeMap::get
pub fn get_mut<A: Into<LocalName>>(
&mut self,
local_name: A
) -> Option<&mut String>
[src]
&mut self,
local_name: A
) -> Option<&mut String>
Like BTreeMap::get_mut
pub fn entry<A: Into<LocalName>>(
&mut self,
local_name: A
) -> Entry<ExpandedName, Attribute>
[src]
&mut self,
local_name: A
) -> Entry<ExpandedName, Attribute>
Like BTreeMap::entry
pub fn insert<A: Into<LocalName>>(
&mut self,
local_name: A,
value: String
) -> Option<Attribute>
[src]
&mut self,
local_name: A,
value: String
) -> Option<Attribute>
Like BTreeMap::insert
pub fn remove<A: Into<LocalName>>(&mut self, local_name: A) -> Option<Attribute>
[src]
Like BTreeMap::remove
Trait Implementations
impl Clone for Attributes
[src]
fn clone(&self) -> Attributes
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Attributes
[src]
impl PartialEq<Attributes> for Attributes
[src]
fn eq(&self, other: &Attributes) -> bool
[src]
fn ne(&self, other: &Attributes) -> bool
[src]
impl StructuralPartialEq for Attributes
[src]
Auto Trait Implementations
impl RefUnwindSafe for Attributes
impl Send for Attributes
impl Sync for Attributes
impl Unpin for Attributes
impl UnwindSafe for Attributes
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> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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>,