pub struct CommentCollectionFilter {Show 16 fields
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub body: Option<Box<StringComparator>>,
pub user: Option<Box<UserFilter>>,
pub issue: Option<Box<NullableIssueFilter>>,
pub project_update: Option<Box<NullableProjectUpdateFilter>>,
pub parent: Option<Box<NullableCommentFilter>>,
pub document_content: Option<Box<NullableDocumentContentFilter>>,
pub reactions: Option<Box<ReactionCollectionFilter>>,
pub needs: Option<Box<CustomerNeedCollectionFilter>>,
pub and: Option<Vec<Box<CommentCollectionFilter>>>,
pub or: Option<Vec<Box<CommentCollectionFilter>>>,
pub some: Option<Box<CommentFilter>>,
pub every: Option<Box<CommentFilter>>,
pub length: Option<Box<NumberComparator>>,
}Fields§
§id: Option<Box<IDComparator>>§created_at: Option<Box<DateComparator>>§updated_at: Option<Box<DateComparator>>§body: Option<Box<StringComparator>>§user: Option<Box<UserFilter>>§issue: Option<Box<NullableIssueFilter>>§project_update: Option<Box<NullableProjectUpdateFilter>>§parent: Option<Box<NullableCommentFilter>>§document_content: Option<Box<NullableDocumentContentFilter>>§reactions: Option<Box<ReactionCollectionFilter>>§needs: Option<Box<CustomerNeedCollectionFilter>>§and: Option<Vec<Box<CommentCollectionFilter>>>§or: Option<Vec<Box<CommentCollectionFilter>>>§some: Option<Box<CommentFilter>>§every: Option<Box<CommentFilter>>§length: Option<Box<NumberComparator>>Trait Implementations§
Source§impl Clone for CommentCollectionFilter
impl Clone for CommentCollectionFilter
Source§fn clone(&self) -> CommentCollectionFilter
fn clone(&self) -> CommentCollectionFilter
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 CommentCollectionFilter
impl Debug for CommentCollectionFilter
Source§impl Default for CommentCollectionFilter
impl Default for CommentCollectionFilter
Source§fn default() -> CommentCollectionFilter
fn default() -> CommentCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentCollectionFilter
impl<'de> Deserialize<'de> for CommentCollectionFilter
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 CommentCollectionFilter
impl RefUnwindSafe for CommentCollectionFilter
impl Send for CommentCollectionFilter
impl Sync for CommentCollectionFilter
impl Unpin for CommentCollectionFilter
impl UnwindSafe for CommentCollectionFilter
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