pub struct ScopeReferenceLimit {
pub document: DocumentAddress,
pub coverage: ReferenceCoverage,
pub retention_limit: Option<ReferencePageLimit>,
}Expand description
A bounded outbound scan that could not establish the complete edge set.
Fields§
§document: DocumentAddressLoaded logical source document, never a host filesystem path.
coverage: ReferenceCoverageShared traversal accounting and first stop condition.
retention_limit: Option<ReferencePageLimit>Distinct reference retention cap, when it caused the stop.
Trait Implementations§
Source§impl Clone for ScopeReferenceLimit
impl Clone for ScopeReferenceLimit
Source§fn clone(&self) -> ScopeReferenceLimit
fn clone(&self) -> ScopeReferenceLimit
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 ScopeReferenceLimit
impl Debug for ScopeReferenceLimit
Source§impl<'de> Deserialize<'de> for ScopeReferenceLimit
impl<'de> Deserialize<'de> for ScopeReferenceLimit
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 ScopeReferenceLimit
Source§impl JsonSchema for ScopeReferenceLimit
impl JsonSchema for ScopeReferenceLimit
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ScopeReferenceLimit
impl PartialEq for ScopeReferenceLimit
Source§impl Serialize for ScopeReferenceLimit
impl Serialize for ScopeReferenceLimit
impl StructuralPartialEq for ScopeReferenceLimit
Auto Trait Implementations§
impl Freeze for ScopeReferenceLimit
impl RefUnwindSafe for ScopeReferenceLimit
impl Send for ScopeReferenceLimit
impl Sync for ScopeReferenceLimit
impl Unpin for ScopeReferenceLimit
impl UnsafeUnpin for ScopeReferenceLimit
impl UnwindSafe for ScopeReferenceLimit
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