pub struct Configured {
pub parent: PathBuf,
pub limits: Limits,
pub limits_unavailable: bool,
}Expand description
What configure settled on: the resolved parent dir (if armed) and whether
requested hard limits will actually be enforced (controllers delegated).
Fields§
§parent: PathBufThe parent dir under which per-run leaves are created (feature is armed).
limits: LimitsLimits that will be applied to each leaf (empty if none requested).
True when limits were requested but the controllers could not be delegated (so the writes will no-op) — the caller should warn.
Trait Implementations§
Source§impl Clone for Configured
impl Clone for Configured
Source§fn clone(&self) -> Configured
fn clone(&self) -> Configured
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 Configured
impl Debug for Configured
impl Eq for Configured
Source§impl PartialEq for Configured
impl PartialEq for Configured
impl StructuralPartialEq for Configured
Auto Trait Implementations§
impl Freeze for Configured
impl RefUnwindSafe for Configured
impl Send for Configured
impl Sync for Configured
impl Unpin for Configured
impl UnsafeUnpin for Configured
impl UnwindSafe for Configured
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