pub struct SharedFactHeader {
pub schema_version: u16,
pub producer: String,
pub kind: SharedFactKind,
pub fact_id: u64,
pub subject: u64,
pub object: Option<u64>,
pub aux: Option<u64>,
pub file_id: u32,
pub start_byte: u32,
pub end_byte: u32,
pub soundness: Soundness,
}Expand description
Minimal cross-engine fact header.
Fields§
§schema_version: u16Schema version, currently SHARED_FACT_SCHEMA_VERSION.
producer: StringProducer id such as c-c11, rustc-nll, or weir.
kind: SharedFactKindShared fact family.
fact_id: u64Stable producer-local fact id.
subject: u64Primary subject id.
object: Option<u64>Optional object id.
aux: Option<u64>Optional auxiliary id, usually a point, edge kind, or relation id.
file_id: u32Stable file id, or zero when not source-spanned.
start_byte: u32Start byte offset, inclusive.
end_byte: u32End byte offset, exclusive.
soundness: SoundnessSoundness label for the fact.
Implementations§
Sourcepub fn new(
producer: impl Into<String>,
kind: SharedFactKind,
fact_id: u64,
subject: u64,
soundness: Soundness,
) -> Self
pub fn new( producer: impl Into<String>, kind: SharedFactKind, fact_id: u64, subject: u64, soundness: Soundness, ) -> Self
Build one shared fact header.
Sourcepub const fn with_object(self, object: u64) -> Self
pub const fn with_object(self, object: u64) -> Self
Attach an object id.
Sourcepub const fn with_span(
self,
file_id: u32,
start_byte: u32,
end_byte: u32,
) -> Self
pub const fn with_span( self, file_id: u32, start_byte: u32, end_byte: u32, ) -> Self
Attach a byte span.
Sourcepub fn wire_header(&self) -> String
pub fn wire_header(&self) -> String
Render the stable compact header used by schema contract tests.
Trait Implementations§
Source§fn clone(&self) -> SharedFactHeader
fn clone(&self) -> SharedFactHeader
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§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
Source§fn eq(&self, other: &SharedFactHeader) -> bool
fn eq(&self, other: &SharedFactHeader) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
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
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more