pub struct Builder<T>(/* private fields */);
Expand description
A builder for StaleRangesNode
Implementations§
Source§impl Builder<InputStage>
impl Builder<InputStage>
Sourcepub fn input(self, input: SeriesNode) -> Builder<ThresholdStage>
pub fn input(self, input: SeriesNode) -> Builder<ThresholdStage>
Sets the input
field.
Source§impl Builder<ThresholdStage>
impl Builder<ThresholdStage>
Sourcepub fn threshold(self, threshold: Duration) -> Builder<StartTimestampStage>
pub fn threshold(self, threshold: Duration) -> Builder<StartTimestampStage>
Sets the threshold
field.
Source§impl Builder<StartTimestampStage>
impl Builder<StartTimestampStage>
Sourcepub fn start_timestamp(self, start_timestamp: Timestamp) -> Builder<Complete>
pub fn start_timestamp(self, start_timestamp: Timestamp) -> Builder<Complete>
Sets the start_timestamp
field.
Source§impl Builder<Complete>
impl Builder<Complete>
Sourcepub fn input(self, input: SeriesNode) -> Self
pub fn input(self, input: SeriesNode) -> Self
Sets the input
field.
Sourcepub fn start_timestamp(self, start_timestamp: Timestamp) -> Self
pub fn start_timestamp(self, start_timestamp: Timestamp) -> Self
Sets the start_timestamp
field.
Sourcepub fn build(self) -> StaleRangesNode
pub fn build(self) -> StaleRangesNode
Consumes the builder, returning a StaleRangesNode
.
Trait Implementations§
Source§impl Default for Builder<InputStage>
impl Default for Builder<InputStage>
Source§impl From<StaleRangesNode> for Builder<Complete>
impl From<StaleRangesNode> for Builder<Complete>
Source§fn from(v: StaleRangesNode) -> Self
fn from(v: StaleRangesNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for Builder<T>where
T: Freeze,
impl<T> RefUnwindSafe for Builder<T>where
T: RefUnwindSafe,
impl<T> Send for Builder<T>where
T: Send,
impl<T> Sync for Builder<T>where
T: Sync,
impl<T> Unpin for Builder<T>where
T: Unpin,
impl<T> UnwindSafe for Builder<T>where
T: UnwindSafe,
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