pub struct SearchPattern(/* private fields */);
Expand description
A pattern that searches the entire dCBOR tree for matches.
This pattern recursively traverses the dCBOR tree and applies the inner pattern at each node, returning all matching paths.
Implementations§
Trait Implementations§
Source§impl Clone for SearchPattern
impl Clone for SearchPattern
Source§fn clone(&self) -> SearchPattern
fn clone(&self) -> SearchPattern
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 SearchPattern
impl Debug for SearchPattern
Source§impl Default for SearchPattern
impl Default for SearchPattern
Source§impl Display for SearchPattern
impl Display for SearchPattern
Source§impl PartialEq for SearchPattern
impl PartialEq for SearchPattern
impl Eq for SearchPattern
impl StructuralPartialEq for SearchPattern
Auto Trait Implementations§
impl Freeze for SearchPattern
impl RefUnwindSafe for SearchPattern
impl Send for SearchPattern
impl Sync for SearchPattern
impl Unpin for SearchPattern
impl UnwindSafe for SearchPattern
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