pub struct UnresolvedRefEntry {
pub id: String,
pub namespace: String,
pub source_node: String,
pub target_name: String,
pub package_hint: Option<String>,
pub ref_kind: String,
pub file_path: Option<String>,
pub line: Option<i64>,
pub created_at: i64,
}Expand description
A row in the unresolved_refs table.
Fields§
§id: String§namespace: String§source_node: String§target_name: String§package_hint: Option<String>§ref_kind: String§file_path: Option<String>§line: Option<i64>§created_at: i64Trait Implementations§
Source§impl Clone for UnresolvedRefEntry
impl Clone for UnresolvedRefEntry
Source§fn clone(&self) -> UnresolvedRefEntry
fn clone(&self) -> UnresolvedRefEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 UnresolvedRefEntry
impl RefUnwindSafe for UnresolvedRefEntry
impl Send for UnresolvedRefEntry
impl Sync for UnresolvedRefEntry
impl Unpin for UnresolvedRefEntry
impl UnsafeUnpin for UnresolvedRefEntry
impl UnwindSafe for UnresolvedRefEntry
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