pub struct KnowledgeGap {
pub id: String,
pub description: String,
pub topic_id: String,
pub gap_type: GapType,
pub priority: f32,
pub discovered_at: String,
}Fields§
§id: String§description: String§topic_id: String§gap_type: GapType§priority: f32§discovered_at: StringImplementations§
Trait Implementations§
Source§impl Clone for KnowledgeGap
impl Clone for KnowledgeGap
Source§fn clone(&self) -> KnowledgeGap
fn clone(&self) -> KnowledgeGap
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 KnowledgeGap
impl Debug for KnowledgeGap
Source§impl<'de> Deserialize<'de> for KnowledgeGap
impl<'de> Deserialize<'de> for KnowledgeGap
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 KnowledgeGap
impl RefUnwindSafe for KnowledgeGap
impl Send for KnowledgeGap
impl Sync for KnowledgeGap
impl Unpin for KnowledgeGap
impl UnsafeUnpin for KnowledgeGap
impl UnwindSafe for KnowledgeGap
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