pub struct RecallFilters {Show 22 fields
pub kinds: Vec<String>,
pub required_labels: Vec<String>,
pub source: Option<String>,
pub from_unix_ms: Option<u64>,
pub to_unix_ms: Option<u64>,
pub min_importance_score: Option<f32>,
pub trust_levels: Vec<String>,
pub states: Vec<String>,
pub include_archived: bool,
pub episode_id: Option<String>,
pub continuity_states: Vec<String>,
pub unresolved_only: bool,
pub temporal_order: Option<String>,
pub historical_mode: Option<String>,
pub lineage_record_id: Option<String>,
pub before_record_id: Option<String>,
pub after_record_id: Option<String>,
pub boundary_labels: Vec<String>,
pub recurrence_key: Option<String>,
pub conflict_states: Vec<String>,
pub resolution_kinds: Vec<String>,
pub unresolved_conflicts_only: bool,
}Fields§
§kinds: Vec<String>§required_labels: Vec<String>§source: Option<String>§from_unix_ms: Option<u64>§to_unix_ms: Option<u64>§min_importance_score: Option<f32>§trust_levels: Vec<String>§states: Vec<String>§include_archived: bool§episode_id: Option<String>§continuity_states: Vec<String>§unresolved_only: bool§temporal_order: Option<String>§historical_mode: Option<String>§lineage_record_id: Option<String>§before_record_id: Option<String>§after_record_id: Option<String>§boundary_labels: Vec<String>§recurrence_key: Option<String>§conflict_states: Vec<String>§resolution_kinds: Vec<String>§unresolved_conflicts_only: boolImplementations§
Source§impl RecallFilters
impl RecallFilters
Sourcepub fn source(&self) -> &str
pub fn source(&self) -> &str
Returns the value of source, or the default value if source is unset.
Sourcepub fn from_unix_ms(&self) -> u64
pub fn from_unix_ms(&self) -> u64
Returns the value of from_unix_ms, or the default value if from_unix_ms is unset.
Sourcepub fn to_unix_ms(&self) -> u64
pub fn to_unix_ms(&self) -> u64
Returns the value of to_unix_ms, or the default value if to_unix_ms is unset.
Sourcepub fn min_importance_score(&self) -> f32
pub fn min_importance_score(&self) -> f32
Returns the value of min_importance_score, or the default value if min_importance_score is unset.
Sourcepub fn episode_id(&self) -> &str
pub fn episode_id(&self) -> &str
Returns the value of episode_id, or the default value if episode_id is unset.
Sourcepub fn temporal_order(&self) -> &str
pub fn temporal_order(&self) -> &str
Returns the value of temporal_order, or the default value if temporal_order is unset.
Sourcepub fn historical_mode(&self) -> &str
pub fn historical_mode(&self) -> &str
Returns the value of historical_mode, or the default value if historical_mode is unset.
Sourcepub fn lineage_record_id(&self) -> &str
pub fn lineage_record_id(&self) -> &str
Returns the value of lineage_record_id, or the default value if lineage_record_id is unset.
Sourcepub fn before_record_id(&self) -> &str
pub fn before_record_id(&self) -> &str
Returns the value of before_record_id, or the default value if before_record_id is unset.
Sourcepub fn after_record_id(&self) -> &str
pub fn after_record_id(&self) -> &str
Returns the value of after_record_id, or the default value if after_record_id is unset.
Sourcepub fn recurrence_key(&self) -> &str
pub fn recurrence_key(&self) -> &str
Returns the value of recurrence_key, or the default value if recurrence_key is unset.
Trait Implementations§
Source§impl Clone for RecallFilters
impl Clone for RecallFilters
Source§fn clone(&self) -> RecallFilters
fn clone(&self) -> RecallFilters
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 RecallFilters
impl Debug for RecallFilters
Source§impl Default for RecallFilters
impl Default for RecallFilters
Source§impl Message for RecallFilters
impl Message for RecallFilters
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 RecallFilters
impl PartialEq for RecallFilters
Source§fn eq(&self, other: &RecallFilters) -> bool
fn eq(&self, other: &RecallFilters) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecallFilters
Auto Trait Implementations§
impl Freeze for RecallFilters
impl RefUnwindSafe for RecallFilters
impl Send for RecallFilters
impl Sync for RecallFilters
impl Unpin for RecallFilters
impl UnsafeUnpin for RecallFilters
impl UnwindSafe for RecallFilters
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