pub struct ResolvedBoundaryRule {
pub from_zone: String,
pub allowed_zones: Vec<String>,
}Expand description
A resolved boundary rule.
Fields§
§from_zone: StringThe zone this rule restricts.
allowed_zones: Vec<String>Zones that from_zone is allowed to import from.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedBoundaryRule
impl RefUnwindSafe for ResolvedBoundaryRule
impl Send for ResolvedBoundaryRule
impl Sync for ResolvedBoundaryRule
impl Unpin for ResolvedBoundaryRule
impl UnsafeUnpin for ResolvedBoundaryRule
impl UnwindSafe for ResolvedBoundaryRule
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