#[non_exhaustive]pub struct StandardIsolation {
pub priority: Priority,
/* private fields */
}Expand description
Standard options for isolating this app profile’s traffic from other use cases.
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.priority: PriorityThe priority of requests sent using this app profile.
Implementations§
Trait Implementations§
Source§impl Clone for StandardIsolation
impl Clone for StandardIsolation
Source§fn clone(&self) -> StandardIsolation
fn clone(&self) -> StandardIsolation
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 StandardIsolation
impl Debug for StandardIsolation
Source§impl Default for StandardIsolation
impl Default for StandardIsolation
Source§fn default() -> StandardIsolation
fn default() -> StandardIsolation
Returns the “default value” for a type. Read more
Source§impl Message for StandardIsolation
impl Message for StandardIsolation
Source§impl PartialEq for StandardIsolation
impl PartialEq for StandardIsolation
impl StructuralPartialEq for StandardIsolation
Auto Trait Implementations§
impl Freeze for StandardIsolation
impl RefUnwindSafe for StandardIsolation
impl Send for StandardIsolation
impl Sync for StandardIsolation
impl Unpin for StandardIsolation
impl UnwindSafe for StandardIsolation
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