pub struct ResolvedZone {
pub name: String,
pub matchers: Vec<GlobMatcher>,
}Expand description
A zone with pre-compiled glob matchers.
Fields§
§name: StringZone identifier.
matchers: Vec<GlobMatcher>Pre-compiled glob matchers for zone membership.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedZone
impl RefUnwindSafe for ResolvedZone
impl Send for ResolvedZone
impl Sync for ResolvedZone
impl Unpin for ResolvedZone
impl UnsafeUnpin for ResolvedZone
impl UnwindSafe for ResolvedZone
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