pub struct SegmentEvents { /* private fields */ }Expand description
A utility for turning a SegmentSource into a stream of SegmentEvents.
Also performs de-duplication of requests for the same segment, while tracking when the all requesters have been dropped.
Implementations§
Source§impl SegmentEvents
impl SegmentEvents
pub fn create() -> (Arc<dyn SegmentSource>, BoxStream<'static, SegmentEvent>)
Auto Trait Implementations§
impl Freeze for SegmentEvents
impl !RefUnwindSafe for SegmentEvents
impl Send for SegmentEvents
impl Sync for SegmentEvents
impl Unpin for SegmentEvents
impl !UnwindSafe for SegmentEvents
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more