pub struct SetEnabledOutcome {
pub applied: bool,
pub succeeded: u64,
pub failed: u64,
pub skipped: u64,
pub total: u64,
}Expand description
The report an enable/disable apply renders. Field order is the
serialized JSON key order and is contractual: the root Cargo.toml enables
serde_json’s preserve_order.
Fields§
§applied: bool§succeeded: u64§failed: u64§skipped: u64§total: u64Trait Implementations§
Source§impl Clone for SetEnabledOutcome
impl Clone for SetEnabledOutcome
Source§fn clone(&self) -> SetEnabledOutcome
fn clone(&self) -> SetEnabledOutcome
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 SetEnabledOutcome
impl Debug for SetEnabledOutcome
Source§impl PartialEq for SetEnabledOutcome
impl PartialEq for SetEnabledOutcome
Source§impl Serialize for SetEnabledOutcome
impl Serialize for SetEnabledOutcome
impl StructuralPartialEq for SetEnabledOutcome
Auto Trait Implementations§
impl Freeze for SetEnabledOutcome
impl RefUnwindSafe for SetEnabledOutcome
impl Send for SetEnabledOutcome
impl Sync for SetEnabledOutcome
impl Unpin for SetEnabledOutcome
impl UnsafeUnpin for SetEnabledOutcome
impl UnwindSafe for SetEnabledOutcome
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