pub enum C14nAlgorithm {
Inclusive10WithComments,
Inclusive10,
Inclusive11WithComments,
Inclusive11,
Exclusive10WithComments,
Exclusive10,
}Expand description
Canonicalization algorithm selection.
Variants§
Inclusive10WithComments
Canonical XML 1.0 (with comments).
Inclusive10
Canonical XML 1.0 (without comments).
Inclusive11WithComments
Canonical XML 1.1 (with comments).
Inclusive11
Canonical XML 1.1 (without comments).
Exclusive10WithComments
Exclusive Canonical XML (with comments).
Exclusive10
Exclusive Canonical XML (without comments).
Trait Implementations§
Source§impl Clone for C14nAlgorithm
impl Clone for C14nAlgorithm
Source§fn clone(&self) -> C14nAlgorithm
fn clone(&self) -> C14nAlgorithm
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 C14nAlgorithm
impl Debug for C14nAlgorithm
Source§impl PartialEq for C14nAlgorithm
impl PartialEq for C14nAlgorithm
impl Copy for C14nAlgorithm
impl Eq for C14nAlgorithm
impl StructuralPartialEq for C14nAlgorithm
Auto Trait Implementations§
impl Freeze for C14nAlgorithm
impl RefUnwindSafe for C14nAlgorithm
impl Send for C14nAlgorithm
impl Sync for C14nAlgorithm
impl Unpin for C14nAlgorithm
impl UnsafeUnpin for C14nAlgorithm
impl UnwindSafe for C14nAlgorithm
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