pub struct BuilderWithEnd { /* private fields */ }
Expand description
Intermediate builder state struct, returned after calling a method on
BuilderWithStart
Most likely you won’t need to ever interact with this type directly.
You’re probably looking for Builder
.
Implementations§
Source§impl BuilderWithEnd
impl BuilderWithEnd
Sourcepub fn with_interval(self, interval: TimeDelta) -> BuilderWithInterval
pub fn with_interval(self, interval: TimeDelta) -> BuilderWithInterval
Sets interval to run at, or the time between ticks.
Auto Trait Implementations§
impl Freeze for BuilderWithEnd
impl RefUnwindSafe for BuilderWithEnd
impl Send for BuilderWithEnd
impl Sync for BuilderWithEnd
impl Unpin for BuilderWithEnd
impl UnwindSafe for BuilderWithEnd
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more