pub enum PropertyMatcher {
Exact(PrefixedString),
Range {
min: PrefixedString,
max: PrefixedString,
},
}Variants§
Trait Implementations§
Source§impl Clone for PropertyMatcher
impl Clone for PropertyMatcher
Source§fn clone(&self) -> PropertyMatcher
fn clone(&self) -> PropertyMatcher
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 PropertyMatcher
impl Debug for PropertyMatcher
Source§impl PartialEq for PropertyMatcher
impl PartialEq for PropertyMatcher
impl StructuralPartialEq for PropertyMatcher
Auto Trait Implementations§
impl Freeze for PropertyMatcher
impl RefUnwindSafe for PropertyMatcher
impl Send for PropertyMatcher
impl Sync for PropertyMatcher
impl Unpin for PropertyMatcher
impl UnsafeUnpin for PropertyMatcher
impl UnwindSafe for PropertyMatcher
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