pub enum AppendResult {
Ok(Box<dyn Sink>),
Sealed(Box<dyn Sealed>),
}
Expand description
Result of the Sink::append
method. See there for details.
Variants§
Ok(Box<dyn Sink>)
Sink have consumed the value and may consume more.
Sealed(Box<dyn Sealed>)
Sink could not consume the last value provided.
Auto Trait Implementations§
impl Freeze for AppendResult
impl !RefUnwindSafe for AppendResult
impl Send for AppendResult
impl !Sync for AppendResult
impl Unpin for AppendResult
impl !UnwindSafe for AppendResult
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