pub struct RepositoryCodeFileRecord {
pub repository_id: String,
pub source_scope: String,
pub file_id: String,
pub path: String,
pub language_id: String,
pub blob_hash: String,
pub byte_len: usize,
pub line_count: usize,
pub parse_status: CodeParseStatus,
pub is_generated: bool,
pub degraded_reason: Option<String>,
}Expand description
File-level code index row.
Fields§
§repository_id: String§source_scope: String§file_id: String§path: String§language_id: String§blob_hash: String§byte_len: usize§line_count: usize§parse_status: CodeParseStatus§is_generated: bool§degraded_reason: Option<String>Trait Implementations§
Source§impl Clone for RepositoryCodeFileRecord
impl Clone for RepositoryCodeFileRecord
Source§fn clone(&self) -> RepositoryCodeFileRecord
fn clone(&self) -> RepositoryCodeFileRecord
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 RepositoryCodeFileRecord
impl Debug for RepositoryCodeFileRecord
Source§impl<'de> Deserialize<'de> for RepositoryCodeFileRecord
impl<'de> Deserialize<'de> for RepositoryCodeFileRecord
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
impl Eq for RepositoryCodeFileRecord
Source§impl PartialEq for RepositoryCodeFileRecord
impl PartialEq for RepositoryCodeFileRecord
Source§impl Serialize for RepositoryCodeFileRecord
impl Serialize for RepositoryCodeFileRecord
impl StructuralPartialEq for RepositoryCodeFileRecord
Auto Trait Implementations§
impl Freeze for RepositoryCodeFileRecord
impl RefUnwindSafe for RepositoryCodeFileRecord
impl Send for RepositoryCodeFileRecord
impl Sync for RepositoryCodeFileRecord
impl Unpin for RepositoryCodeFileRecord
impl UnsafeUnpin for RepositoryCodeFileRecord
impl UnwindSafe for RepositoryCodeFileRecord
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.