pub struct FeedbackInput {
pub title: String,
pub body: String,
pub evidence: Vec<String>,
pub session: String,
pub source: String,
pub confidence: f64,
}Fields§
§title: String§body: String§evidence: Vec<String>§session: String§source: String§confidence: f64Trait Implementations§
Source§impl Clone for FeedbackInput
impl Clone for FeedbackInput
Source§fn clone(&self) -> FeedbackInput
fn clone(&self) -> FeedbackInput
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 FeedbackInput
impl Debug for FeedbackInput
Source§impl PartialEq for FeedbackInput
impl PartialEq for FeedbackInput
impl StructuralPartialEq for FeedbackInput
Auto Trait Implementations§
impl Freeze for FeedbackInput
impl RefUnwindSafe for FeedbackInput
impl Send for FeedbackInput
impl Sync for FeedbackInput
impl Unpin for FeedbackInput
impl UnsafeUnpin for FeedbackInput
impl UnwindSafe for FeedbackInput
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