pub struct PruneCandidate<'a> {
pub id: &'a str,
pub kind: &'a str,
pub family: Option<&'a str>,
pub owner: &'a str,
pub classification: &'a str,
pub scope: &'a str,
pub reason: &'a str,
}Fields§
§id: &'a str§kind: &'a str§family: Option<&'a str>§owner: &'a str§classification: &'a str§scope: &'a str§reason: &'a strTrait Implementations§
Source§impl<'a> Clone for PruneCandidate<'a>
impl<'a> Clone for PruneCandidate<'a>
Source§fn clone(&self) -> PruneCandidate<'a>
fn clone(&self) -> PruneCandidate<'a>
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<'a> Debug for PruneCandidate<'a>
impl<'a> Debug for PruneCandidate<'a>
impl<'a> Copy for PruneCandidate<'a>
Auto Trait Implementations§
impl<'a> Freeze for PruneCandidate<'a>
impl<'a> RefUnwindSafe for PruneCandidate<'a>
impl<'a> Send for PruneCandidate<'a>
impl<'a> Sync for PruneCandidate<'a>
impl<'a> Unpin for PruneCandidate<'a>
impl<'a> UnsafeUnpin for PruneCandidate<'a>
impl<'a> UnwindSafe for PruneCandidate<'a>
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