pub struct AttachmentFilter {
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub title: Option<Box<StringComparator>>,
pub subtitle: Option<Box<NullableStringComparator>>,
pub url: Option<Box<StringComparator>>,
pub creator: Option<Box<NullableUserFilter>>,
pub source_type: Option<Box<SourceTypeComparator>>,
pub and: Option<Vec<Box<AttachmentFilter>>>,
pub or: Option<Vec<Box<AttachmentFilter>>>,
}Fields§
§id: Option<Box<IDComparator>>§created_at: Option<Box<DateComparator>>§updated_at: Option<Box<DateComparator>>§title: Option<Box<StringComparator>>§subtitle: Option<Box<NullableStringComparator>>§url: Option<Box<StringComparator>>§creator: Option<Box<NullableUserFilter>>§source_type: Option<Box<SourceTypeComparator>>§and: Option<Vec<Box<AttachmentFilter>>>§or: Option<Vec<Box<AttachmentFilter>>>Trait Implementations§
Source§impl Clone for AttachmentFilter
impl Clone for AttachmentFilter
Source§fn clone(&self) -> AttachmentFilter
fn clone(&self) -> AttachmentFilter
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 AttachmentFilter
impl Debug for AttachmentFilter
Source§impl Default for AttachmentFilter
impl Default for AttachmentFilter
Source§fn default() -> AttachmentFilter
fn default() -> AttachmentFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentFilter
impl<'de> Deserialize<'de> for AttachmentFilter
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 AttachmentFilter
impl RefUnwindSafe for AttachmentFilter
impl Send for AttachmentFilter
impl Sync for AttachmentFilter
impl Unpin for AttachmentFilter
impl UnwindSafe for AttachmentFilter
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