pub struct StdlibPersona {
pub name: &'static str,
pub description: &'static str,
pub tone: &'static str,
pub domain: &'static [&'static str],
pub confidence_threshold: f64,
pub cite_sources: bool,
pub category: &'static str,
pub version: &'static str,
}Fields§
§name: &'static str§description: &'static str§tone: &'static str§domain: &'static [&'static str]§confidence_threshold: f64§cite_sources: bool§category: &'static str§version: &'static strTrait Implementations§
Source§impl Clone for StdlibPersona
impl Clone for StdlibPersona
Source§fn clone(&self) -> StdlibPersona
fn clone(&self) -> StdlibPersona
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 StdlibPersona
impl RefUnwindSafe for StdlibPersona
impl Send for StdlibPersona
impl Sync for StdlibPersona
impl Unpin for StdlibPersona
impl UnsafeUnpin for StdlibPersona
impl UnwindSafe for StdlibPersona
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