pub struct EntrypointProfile {
pub name: String,
pub anchors: Vec<RelationAnchor>,
pub relations: Vec<GraphRelationKind>,
}Expand description
Request-owned entrypoint reachability profile.
Profiles are deliberately not discovered or persisted. The surrounding relation budget supplies the input, traversal, and output ceilings.
Fields§
§name: StringStable human-readable profile name.
anchors: Vec<RelationAnchor>Exact file or fully disambiguated symbol anchors.
relations: Vec<GraphRelationKind>Closed relation families admitted by this profile.
Trait Implementations§
Source§impl Clone for EntrypointProfile
impl Clone for EntrypointProfile
Source§fn clone(&self) -> EntrypointProfile
fn clone(&self) -> EntrypointProfile
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 EntrypointProfile
impl Debug for EntrypointProfile
Source§impl<'de> Deserialize<'de> for EntrypointProfile
impl<'de> Deserialize<'de> for EntrypointProfile
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 EntrypointProfile
Source§impl PartialEq for EntrypointProfile
impl PartialEq for EntrypointProfile
Source§fn eq(&self, other: &EntrypointProfile) -> bool
fn eq(&self, other: &EntrypointProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntrypointProfile
impl Serialize for EntrypointProfile
impl StructuralPartialEq for EntrypointProfile
Auto Trait Implementations§
impl Freeze for EntrypointProfile
impl RefUnwindSafe for EntrypointProfile
impl Send for EntrypointProfile
impl Sync for EntrypointProfile
impl Unpin for EntrypointProfile
impl UnsafeUnpin for EntrypointProfile
impl UnwindSafe for EntrypointProfile
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>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.