#[non_exhaustive]pub struct UrisMatcher {
pub uris: Vec<String>,
/* private fields */
}Available on crate feature
document-service only.Expand description
Matcher for the Documents by exact uris.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.uris: Vec<String>The exact URIs to match by.
Implementations§
Trait Implementations§
Source§impl Clone for UrisMatcher
impl Clone for UrisMatcher
Source§fn clone(&self) -> UrisMatcher
fn clone(&self) -> UrisMatcher
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 UrisMatcher
impl Debug for UrisMatcher
Source§impl Default for UrisMatcher
impl Default for UrisMatcher
Source§fn default() -> UrisMatcher
fn default() -> UrisMatcher
Returns the “default value” for a type. Read more
Source§impl Message for UrisMatcher
impl Message for UrisMatcher
Source§impl PartialEq for UrisMatcher
impl PartialEq for UrisMatcher
impl StructuralPartialEq for UrisMatcher
Auto Trait Implementations§
impl Freeze for UrisMatcher
impl RefUnwindSafe for UrisMatcher
impl Send for UrisMatcher
impl Sync for UrisMatcher
impl Unpin for UrisMatcher
impl UnwindSafe for UrisMatcher
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