pub struct GuidancePattern {
pub id: String,
pub category: InsightCategory,
pub description: String,
pub confidence: f32,
pub usage_count: u32,
}Expand description
A guidance pattern for export to external format.
Fields§
§id: StringPattern identifier.
category: InsightCategoryCategory.
description: StringBrief description.
confidence: f32Confidence/importance.
usage_count: u32Usage count.
Trait Implementations§
Source§impl Clone for GuidancePattern
impl Clone for GuidancePattern
Source§fn clone(&self) -> GuidancePattern
fn clone(&self) -> GuidancePattern
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 moreSource§impl Debug for GuidancePattern
impl Debug for GuidancePattern
Source§impl<'de> Deserialize<'de> for GuidancePattern
impl<'de> Deserialize<'de> for GuidancePattern
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GuidancePattern
impl RefUnwindSafe for GuidancePattern
impl Send for GuidancePattern
impl Sync for GuidancePattern
impl Unpin for GuidancePattern
impl UnsafeUnpin for GuidancePattern
impl UnwindSafe for GuidancePattern
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