pub trait TolerationExt {
    // Required methods
    fn no_schedule(key: impl ToString) -> TolerationBuilder;
    fn prefer_no_schedule(key: impl ToString) -> TolerationBuilder;
    fn no_execute(key: impl ToString) -> TolerationBuilder;
    fn toleration_seconds(self, toleration_seconds: i64) -> Self;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§