pub struct InventoryScope {
pub kind: String,
pub all: Option<bool>,
pub has_tags: Vec<String>,
pub excludes: Vec<String>,
}Fields§
§kind: String§all: Option<bool>§excludes: Vec<String>Trait Implementations§
Source§impl Clone for InventoryScope
impl Clone for InventoryScope
Source§fn clone(&self) -> InventoryScope
fn clone(&self) -> InventoryScope
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 InventoryScope
impl Debug for InventoryScope
Source§impl<'de> Deserialize<'de> for InventoryScope
impl<'de> Deserialize<'de> for InventoryScope
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InventoryScope
impl RefUnwindSafe for InventoryScope
impl Send for InventoryScope
impl Sync for InventoryScope
impl Unpin for InventoryScope
impl UnsafeUnpin for InventoryScope
impl UnwindSafe for InventoryScope
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