pub struct AttachmentCollectionFilter {Show 13 fields
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<AttachmentCollectionFilter>>>,
pub or: Option<Vec<Box<AttachmentCollectionFilter>>>,
pub some: Option<Box<AttachmentFilter>>,
pub every: Option<Box<AttachmentFilter>>,
pub length: Option<Box<NumberComparator>>,
}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<AttachmentCollectionFilter>>>§or: Option<Vec<Box<AttachmentCollectionFilter>>>§some: Option<Box<AttachmentFilter>>§every: Option<Box<AttachmentFilter>>§length: Option<Box<NumberComparator>>Trait Implementations§
Source§impl Clone for AttachmentCollectionFilter
impl Clone for AttachmentCollectionFilter
Source§fn clone(&self) -> AttachmentCollectionFilter
fn clone(&self) -> AttachmentCollectionFilter
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 AttachmentCollectionFilter
impl Debug for AttachmentCollectionFilter
Source§impl Default for AttachmentCollectionFilter
impl Default for AttachmentCollectionFilter
Source§fn default() -> AttachmentCollectionFilter
fn default() -> AttachmentCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentCollectionFilter
impl<'de> Deserialize<'de> for AttachmentCollectionFilter
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 AttachmentCollectionFilter
impl RefUnwindSafe for AttachmentCollectionFilter
impl Send for AttachmentCollectionFilter
impl Sync for AttachmentCollectionFilter
impl Unpin for AttachmentCollectionFilter
impl UnwindSafe for AttachmentCollectionFilter
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