Enum krates::Node

source ·
pub enum Node<N> {
    Krate {
        id: Kid,
        krate: N,
        features: EnabledFeatures,
    },
    Feature {
        krate_index: NodeId,
        name: String,
    },
}
Expand description

A node in the crate graph.

Variants§

§

Krate

Fields

§id: Kid

The unique identifier for this node.

§krate: N

Associated user data with the node. Must be From<cargo_metadata::Package>

§features: EnabledFeatures

List of features enabled on the crate

§

Feature

Fields

§krate_index: NodeId

The node index for the crate this feature is for

§name: String

Trait Implementations§

source§

impl<N> Debug for Node<N>
where N: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<N> Display for Node<N>
where N: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<N> Freeze for Node<N>
where N: Freeze,

§

impl<N> RefUnwindSafe for Node<N>
where N: RefUnwindSafe,

§

impl<N> Send for Node<N>
where N: Send,

§

impl<N> Sync for Node<N>
where N: Sync,

§

impl<N> Unpin for Node<N>
where N: Unpin,

§

impl<N> UnwindSafe for Node<N>
where N: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.