pub struct SearchQuery {Show 39 fields
pub archived: Option<bool>,
pub search_text: Option<String>,
pub exact_match: Option<String>,
pub after: Option<Timestamp>,
pub before: Option<Timestamp>,
pub advanced_time_filter: Option<EventTimeFilter>,
pub asset: Option<String>,
pub assets: Option<AssetsFilter>,
pub template: Option<String>,
pub workbook: Option<String>,
pub data_review: Option<String>,
pub data_reviews: Option<DataReviewsFilter>,
pub origin_type: Option<i32>,
pub origin_types: Option<OriginTypesFilter>,
pub data_review_check: Option<String>,
pub data_review_checks: Option<DataReviewChecksFilter>,
pub disposition_status: Option<i32>,
pub disposition_statuses: Option<EventDispositionStatusListWrapper>,
pub priority: Option<i32>,
pub priorities: Option<PriorityListWrapper>,
pub assignee: Option<String>,
pub assignees: Option<AssigneesFilter>,
pub event_type: Option<i32>,
pub event_types: Option<EventTypeListWrapper>,
pub created_by: Option<String>,
pub created_by_any_of: Option<UserRidListWrapper>,
pub label: Option<String>,
pub labels: Option<LabelsFilter>,
pub property: Option<Property>,
pub properties: Option<PropertiesFilter>,
pub and: Option<SearchQueryListWrapper>,
pub or: Option<SearchQueryListWrapper>,
pub not: Option<Box<SearchQuery>>,
pub workspace: Option<String>,
pub procedure: Option<String>,
pub procedure_execution: Option<String>,
pub step_id: Option<String>,
pub streaming_checklist: Option<String>,
pub streaming_check: Option<String>,
}Fields§
§archived: Option<bool>§search_text: Option<String>§exact_match: Option<String>§after: Option<Timestamp>§before: Option<Timestamp>§advanced_time_filter: Option<EventTimeFilter>§asset: Option<String>§assets: Option<AssetsFilter>§template: Option<String>§workbook: Option<String>§data_review: Option<String>§data_reviews: Option<DataReviewsFilter>§origin_type: Option<i32>§origin_types: Option<OriginTypesFilter>§data_review_check: Option<String>§data_review_checks: Option<DataReviewChecksFilter>§disposition_status: Option<i32>§disposition_statuses: Option<EventDispositionStatusListWrapper>§priority: Option<i32>§priorities: Option<PriorityListWrapper>§assignee: Option<String>§assignees: Option<AssigneesFilter>§event_type: Option<i32>§event_types: Option<EventTypeListWrapper>§created_by: Option<String>§created_by_any_of: Option<UserRidListWrapper>§label: Option<String>§labels: Option<LabelsFilter>§property: Option<Property>§properties: Option<PropertiesFilter>§and: Option<SearchQueryListWrapper>§or: Option<SearchQueryListWrapper>§not: Option<Box<SearchQuery>>§workspace: Option<String>§procedure: Option<String>§procedure_execution: Option<String>§step_id: Option<String>§streaming_checklist: Option<String>§streaming_check: Option<String>Implementations§
Source§impl SearchQuery
impl SearchQuery
Sourcepub fn archived(&self) -> bool
pub fn archived(&self) -> bool
Returns the value of archived, or the default value if archived is unset.
Sourcepub fn search_text(&self) -> &str
pub fn search_text(&self) -> &str
Returns the value of search_text, or the default value if search_text is unset.
Sourcepub fn exact_match(&self) -> &str
pub fn exact_match(&self) -> &str
Returns the value of exact_match, or the default value if exact_match is unset.
Sourcepub fn asset(&self) -> &str
pub fn asset(&self) -> &str
Returns the value of asset, or the default value if asset is unset.
Sourcepub fn template(&self) -> &str
pub fn template(&self) -> &str
Returns the value of template, or the default value if template is unset.
Sourcepub fn workbook(&self) -> &str
pub fn workbook(&self) -> &str
Returns the value of workbook, or the default value if workbook is unset.
Sourcepub fn data_review(&self) -> &str
pub fn data_review(&self) -> &str
Returns the value of data_review, or the default value if data_review is unset.
Sourcepub fn origin_type(&self) -> SearchEventOriginType
pub fn origin_type(&self) -> SearchEventOriginType
Returns the enum value of origin_type, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_origin_type(&mut self, value: SearchEventOriginType)
pub fn set_origin_type(&mut self, value: SearchEventOriginType)
Sets origin_type to the provided enum value.
Sourcepub fn data_review_check(&self) -> &str
pub fn data_review_check(&self) -> &str
Returns the value of data_review_check, or the default value if data_review_check is unset.
Sourcepub fn disposition_status(&self) -> EventDispositionStatus
pub fn disposition_status(&self) -> EventDispositionStatus
Returns the enum value of disposition_status, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_disposition_status(&mut self, value: EventDispositionStatus)
pub fn set_disposition_status(&mut self, value: EventDispositionStatus)
Sets disposition_status to the provided enum value.
Sourcepub fn priority(&self) -> Priority
pub fn priority(&self) -> Priority
Returns the enum value of priority, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_priority(&mut self, value: Priority)
pub fn set_priority(&mut self, value: Priority)
Sets priority to the provided enum value.
Sourcepub fn assignee(&self) -> &str
pub fn assignee(&self) -> &str
Returns the value of assignee, or the default value if assignee is unset.
Sourcepub fn event_type(&self) -> EventType
pub fn event_type(&self) -> EventType
Returns the enum value of event_type, or the default if the field is unset or set to an invalid enum value.
Sourcepub fn set_event_type(&mut self, value: EventType)
pub fn set_event_type(&mut self, value: EventType)
Sets event_type to the provided enum value.
Sourcepub fn created_by(&self) -> &str
pub fn created_by(&self) -> &str
Returns the value of created_by, or the default value if created_by is unset.
Sourcepub fn label(&self) -> &str
pub fn label(&self) -> &str
Returns the value of label, or the default value if label is unset.
Sourcepub fn workspace(&self) -> &str
pub fn workspace(&self) -> &str
Returns the value of workspace, or the default value if workspace is unset.
Sourcepub fn procedure(&self) -> &str
pub fn procedure(&self) -> &str
Returns the value of procedure, or the default value if procedure is unset.
Sourcepub fn procedure_execution(&self) -> &str
pub fn procedure_execution(&self) -> &str
Returns the value of procedure_execution, or the default value if procedure_execution is unset.
Sourcepub fn step_id(&self) -> &str
pub fn step_id(&self) -> &str
Returns the value of step_id, or the default value if step_id is unset.
Sourcepub fn streaming_checklist(&self) -> &str
pub fn streaming_checklist(&self) -> &str
Returns the value of streaming_checklist, or the default value if streaming_checklist is unset.
Sourcepub fn streaming_check(&self) -> &str
pub fn streaming_check(&self) -> &str
Returns the value of streaming_check, or the default value if streaming_check is unset.
Trait Implementations§
Source§impl Clone for SearchQuery
impl Clone for SearchQuery
Source§fn clone(&self) -> SearchQuery
fn clone(&self) -> SearchQuery
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SearchQuery
impl Debug for SearchQuery
Source§impl Default for SearchQuery
impl Default for SearchQuery
Source§impl Message for SearchQuery
impl Message for SearchQuery
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self.Source§impl PartialEq for SearchQuery
impl PartialEq for SearchQuery
impl StructuralPartialEq for SearchQuery
Auto Trait Implementations§
impl Freeze for SearchQuery
impl RefUnwindSafe for SearchQuery
impl Send for SearchQuery
impl Sync for SearchQuery
impl Unpin for SearchQuery
impl UnsafeUnpin for SearchQuery
impl UnwindSafe for SearchQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request