[][src]Trait kubelet::store::composite::InterceptingStore

pub trait InterceptingStore: Store {
    fn intercepts(&self, image_ref: &Reference) -> bool;
}

A Store that has additional logic to determine if it can satisfy a particular reference. An InterceptingStore can be composed with another Store to satisfy specific requests in a custom way.

Required methods

fn intercepts(&self, image_ref: &Reference) -> bool

Whether this InterceptingStore can satisfy the given reference.

Loading content...

Implementors

impl InterceptingStore for FileSystemStore[src]

Loading content...