pub struct OwnersCheckOutput {
pub workspace: String,
pub drift_detected: bool,
pub packages: Vec<OwnersPackageReport>,
}Expand description
Output for owners check.
Fields§
§workspace: StringWorkspace root display.
drift_detected: boolWhether any drift was found.
packages: Vec<OwnersPackageReport>Per-package reports.
Trait Implementations§
Source§impl Clone for OwnersCheckOutput
impl Clone for OwnersCheckOutput
Source§fn clone(&self) -> OwnersCheckOutput
fn clone(&self) -> OwnersCheckOutput
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 OwnersCheckOutput
impl Debug for OwnersCheckOutput
Auto Trait Implementations§
impl Freeze for OwnersCheckOutput
impl RefUnwindSafe for OwnersCheckOutput
impl Send for OwnersCheckOutput
impl Sync for OwnersCheckOutput
impl Unpin for OwnersCheckOutput
impl UnsafeUnpin for OwnersCheckOutput
impl UnwindSafe for OwnersCheckOutput
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