Struct bollard::container::AttachContainerResults
source · pub struct AttachContainerResults {
pub output: Pin<Box<dyn Stream<Item = Result<LogOutput, Error>> + Send>>,
pub input: Pin<Box<dyn AsyncWrite + Send>>,
}
Expand description
Results type for the Attach Container API
Fields§
§output: Pin<Box<dyn Stream<Item = Result<LogOutput, Error>> + Send>>
Log Output enum, wrapped in a Stream.
input: Pin<Box<dyn AsyncWrite + Send>>
Byte writer to container
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AttachContainerResults
impl !RefUnwindSafe for AttachContainerResults
impl Send for AttachContainerResults
impl !Sync for AttachContainerResults
impl Unpin for AttachContainerResults
impl !UnwindSafe for AttachContainerResults
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