pub enum Transform {
Enveloped,
XpathExcludeAllSignatures,
C14n(C14nAlgorithm),
}Expand description
A single transform in the pipeline.
Variants§
Enveloped
Enveloped signature: removes the <Signature> element subtree
that contains the <Reference> being processed.
Input: NodeSet → Output: NodeSet
XpathExcludeAllSignatures
Narrow XPath compatibility form used by some donor vectors:
not(ancestor-or-self::dsig:Signature).
Unlike Enveloped, this excludes every ds:Signature subtree in the
current document, not only the containing signature.
C14n(C14nAlgorithm)
XML Canonicalization (any supported variant).
Input: NodeSet → Output: Binary
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Transform
impl RefUnwindSafe for Transform
impl Send for Transform
impl Sync for Transform
impl Unpin for Transform
impl UnsafeUnpin for Transform
impl UnwindSafe for Transform
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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