pub struct TopicSegmentInput<'a> {Show 14 fields
pub host_id: i64,
pub project_id: i64,
pub session_row_id: i64,
pub project: &'a str,
pub topic_key: &'a str,
pub title: &'a str,
pub summary: &'a str,
pub status: &'a str,
pub segment_index: i64,
pub covered_from_event_id: i64,
pub covered_to_event_id: i64,
pub evidence_event_ids: &'a str,
pub files: Option<&'a str>,
pub confidence: f64,
}Fields§
§host_id: i64§project_id: i64§session_row_id: i64§project: &'a str§topic_key: &'a str§title: &'a str§summary: &'a str§status: &'a str§segment_index: i64§covered_from_event_id: i64§covered_to_event_id: i64§evidence_event_ids: &'a str§files: Option<&'a str>§confidence: f64Auto Trait Implementations§
impl<'a> Freeze for TopicSegmentInput<'a>
impl<'a> RefUnwindSafe for TopicSegmentInput<'a>
impl<'a> Send for TopicSegmentInput<'a>
impl<'a> Sync for TopicSegmentInput<'a>
impl<'a> Unpin for TopicSegmentInput<'a>
impl<'a> UnsafeUnpin for TopicSegmentInput<'a>
impl<'a> UnwindSafe for TopicSegmentInput<'a>
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
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more