pub struct CustomFieldFilter {
pub id: u64,
pub value: StringFieldFilter,
}Expand description
A filter for a custom field, consisting of its ID and a StringFieldFilter for its value.
Fields§
§id: u64The ID of the custom field to filter by.
value: StringFieldFilterThe value to filter the custom field by, using a StringFieldFilter.
Trait Implementations§
Source§impl Clone for CustomFieldFilter
impl Clone for CustomFieldFilter
Source§fn clone(&self) -> CustomFieldFilter
fn clone(&self) -> CustomFieldFilter
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 moreAuto Trait Implementations§
impl Freeze for CustomFieldFilter
impl RefUnwindSafe for CustomFieldFilter
impl Send for CustomFieldFilter
impl Sync for CustomFieldFilter
impl Unpin for CustomFieldFilter
impl UnwindSafe for CustomFieldFilter
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