pub struct LabelFilter {
pub name: Option<String>,
pub external_id_prefix: Option<String>,
pub data_set_ids: Option<Vec<Identity>>,
}Expand description
Filter used for listing labels.
Fields§
§name: Option<String>Include labels with this name.
external_id_prefix: Option<String>Include labels with this (case sensitive) prefix on external ID.
data_set_ids: Option<Vec<Identity>>Include labels with one of these data sets.
Trait Implementations§
Source§impl Clone for LabelFilter
impl Clone for LabelFilter
Source§fn clone(&self) -> LabelFilter
fn clone(&self) -> LabelFilter
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 LabelFilter
impl Debug for LabelFilter
Source§impl Default for LabelFilter
impl Default for LabelFilter
Source§fn default() -> LabelFilter
fn default() -> LabelFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelFilter
impl<'de> Deserialize<'de> for LabelFilter
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
Source§impl FilterItems<LabelFilter, Label> for LabelsResource
impl FilterItems<LabelFilter, Label> for LabelsResource
Auto Trait Implementations§
impl Freeze for LabelFilter
impl RefUnwindSafe for LabelFilter
impl Send for LabelFilter
impl Sync for LabelFilter
impl Unpin for LabelFilter
impl UnwindSafe for LabelFilter
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