pub struct CachedEdge {
pub id: i64,
pub source_file_id: i64,
pub target_file_id: Option<i64>,
pub target_path: Option<String>,
pub kind: String,
pub confidence: f64,
}Fields§
§id: i64§source_file_id: i64§target_file_id: Option<i64>§target_path: Option<String>§kind: String§confidence: f64Trait Implementations§
Source§impl Clone for CachedEdge
impl Clone for CachedEdge
Source§fn clone(&self) -> CachedEdge
fn clone(&self) -> CachedEdge
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 CachedEdge
impl Debug for CachedEdge
Source§impl<'de> Deserialize<'de> for CachedEdge
impl<'de> Deserialize<'de> for CachedEdge
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 CachedEdge
impl RefUnwindSafe for CachedEdge
impl Send for CachedEdge
impl Sync for CachedEdge
impl Unpin for CachedEdge
impl UnsafeUnpin for CachedEdge
impl UnwindSafe for CachedEdge
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