pub enum DavXmlNode {
Element(DavXmlElement),
Text(String),
CData(String),
Comment(String),
ProcessingInstruction(String, Option<String>),
}Expand description
XML content owned by the WebDAV boundary.
Variants§
Element(DavXmlElement)
Child element.
Text(String)
Escaped character data.
CData(String)
CDATA content.
Comment(String)
Comment content.
ProcessingInstruction(String, Option<String>)
Processing instruction.
Trait Implementations§
Source§impl Clone for DavXmlNode
impl Clone for DavXmlNode
Source§fn clone(&self) -> DavXmlNode
fn clone(&self) -> DavXmlNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DavXmlNode
impl Debug for DavXmlNode
Source§impl PartialEq for DavXmlNode
impl PartialEq for DavXmlNode
Source§fn eq(&self, other: &DavXmlNode) -> bool
fn eq(&self, other: &DavXmlNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DavXmlNode
impl StructuralPartialEq for DavXmlNode
Auto Trait Implementations§
impl Freeze for DavXmlNode
impl RefUnwindSafe for DavXmlNode
impl Send for DavXmlNode
impl Sync for DavXmlNode
impl Unpin for DavXmlNode
impl UnsafeUnpin for DavXmlNode
impl UnwindSafe for DavXmlNode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.