pub struct TargetFilter {
pub target_type: Option<String>,
pub exclude: Option<bool>,
}Expand description
Target filter for getTargets.
Fields§
§target_type: Option<String>Target type to filter.
exclude: Option<bool>Whether to exclude the target.
Trait Implementations§
Source§impl Clone for TargetFilter
impl Clone for TargetFilter
Source§fn clone(&self) -> TargetFilter
fn clone(&self) -> TargetFilter
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 TargetFilter
impl Debug for TargetFilter
Auto Trait Implementations§
impl Freeze for TargetFilter
impl RefUnwindSafe for TargetFilter
impl Send for TargetFilter
impl Sync for TargetFilter
impl Unpin for TargetFilter
impl UnwindSafe for TargetFilter
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