#[non_exhaustive]pub enum RetrievalMethodTransforms {
None,
X509DataNodeSetFilter {
expression: String,
namespaces: BTreeMap<String, String>,
},
Unsupported,
}Expand description
Transform forms accepted on <RetrievalMethod>.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No transform chain is present.
X509DataNodeSetFilter
Filter a same-document node-set to one ds:X509Data-rooted subtree.
Fields
Unsupported
A transform chain attached to a RetrievalMethod type this implementation
does not materialize. Resolvers may ignore this advisory key source and
continue with later <KeyInfo> children.
Trait Implementations§
Source§impl Clone for RetrievalMethodTransforms
impl Clone for RetrievalMethodTransforms
Source§fn clone(&self) -> RetrievalMethodTransforms
fn clone(&self) -> RetrievalMethodTransforms
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 RetrievalMethodTransforms
impl Debug for RetrievalMethodTransforms
impl Eq for RetrievalMethodTransforms
Source§impl Hash for RetrievalMethodTransforms
impl Hash for RetrievalMethodTransforms
impl StructuralPartialEq for RetrievalMethodTransforms
Auto Trait Implementations§
impl Freeze for RetrievalMethodTransforms
impl RefUnwindSafe for RetrievalMethodTransforms
impl Send for RetrievalMethodTransforms
impl Sync for RetrievalMethodTransforms
impl Unpin for RetrievalMethodTransforms
impl UnsafeUnpin for RetrievalMethodTransforms
impl UnwindSafe for RetrievalMethodTransforms
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