pub struct C14nProcessor { /* private fields */ }Expand description
Canonicalizes an XML document according to C14N 1.0.
Implementations§
Source§impl C14nProcessor
impl C14nProcessor
Sourcepub fn new(options: C14nOptions) -> Self
pub fn new(options: C14nOptions) -> Self
Creates a new C14N processor with the given options.
Sourcepub fn without_comments() -> Self
pub fn without_comments() -> Self
Creates a processor for C14N without comments.
Sourcepub fn with_comments() -> Self
pub fn with_comments() -> Self
Creates a processor for C14N with comments.
Auto Trait Implementations§
impl Freeze for C14nProcessor
impl RefUnwindSafe for C14nProcessor
impl Send for C14nProcessor
impl Sync for C14nProcessor
impl Unpin for C14nProcessor
impl UnwindSafe for C14nProcessor
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