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§
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
Object Safety§
This trait is not object safe.