pub struct Transforms(pub Vec<Box<dyn Transform>>);
Expand description

A list of Transforms.

Tuple Fields

0: Vec<Box<dyn Transform>>

Implementations

Transform a graph using the transformation list.

This method applies the transformations to the given graph. Each transform is fully applied to the graph before the next transform, to ensure that dependencies between transforms are correctly handled.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.