pub enum SendingContentState<S>{
SendingPublishMethod(Send<S>, Should<Properties>, Should<Bytes>),
SendingContentHeader(Send<S>, Should<Bytes>),
SendingContentBody(Send<S>),
}
Variants§
SendingPublishMethod(Send<S>, Should<Properties>, Should<Bytes>)
SendingContentHeader(Send<S>, Should<Bytes>)
SendingContentBody(Send<S>)
Auto Trait Implementations§
impl<S> !Freeze for SendingContentState<S>
impl<S> RefUnwindSafe for SendingContentState<S>where
S: RefUnwindSafe,
impl<S> Send for SendingContentState<S>where
S: Send,
impl<S> Sync for SendingContentState<S>where
S: Sync,
impl<S> Unpin for SendingContentState<S>where
S: Unpin,
impl<S> UnwindSafe for SendingContentState<S>where
S: 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