Struct spirit::fragment::driver::CacheSimilar[][src]

pub struct CacheSimilar<F: Fragment + ToOwned> { /* fields omitted */ }
Expand description

A Driver that caches both created Resources and their Seeds to create as little as possible.

It uses the Comparable trait to decide if it needs to create the Resource complete from scratch, if it can reuse the old Seed or if it can even keep the old instance. This is a good driver for cases where the Seed is some kind of unique resource and changing the resource by creating a completely new instance while the old one existed wouldn’t work. An example of this is the bound ports on listening sockets ‒ while we might want to attach different configuration to the same socket, opening a new socket with the same port would not work. Therefore, the socket is somewhere within the Seed and it is reused if the port doesn’t change.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

The smaller Fragment the driver cuts F into. Read more

Issues the instructions how to transition to the new fragment. Read more

Call to this method informs the Driver that the instructions returned by the last call to instructions were not followed and were dropped. Read more

Call to this method informs the Driver that the instructions returned by the last call to instructions were followed and the changes have taken place. Read more

Informs if there’s a chance the new fragment will use something in the Driver’s cache if applied. Read more

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

Performs the conversion.

Performs the conversion.

Turns self into the result.

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.