pub struct DistilledChunk {
pub content: String,
pub trigger_desc: Option<String>,
pub anti_trigger_desc: Option<String>,
pub source_log_id: String,
pub nomination: Option<String>,
}Fields§
§content: String§trigger_desc: Option<String>§anti_trigger_desc: Option<String>§source_log_id: String§nomination: Option<String>Trait Implementations§
Source§impl Clone for DistilledChunk
impl Clone for DistilledChunk
Source§fn clone(&self) -> DistilledChunk
fn clone(&self) -> DistilledChunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DistilledChunk
impl RefUnwindSafe for DistilledChunk
impl Send for DistilledChunk
impl Sync for DistilledChunk
impl Unpin for DistilledChunk
impl UnsafeUnpin for DistilledChunk
impl UnwindSafe for DistilledChunk
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