client: reindent
This commit is contained in:
parent
c75eafa553
commit
3586e5134d
1 changed files with 14 additions and 9 deletions
|
@ -184,16 +184,21 @@ impl Sink for Client {
|
|||
|
||||
fn start_send(&mut self, item: Self::SinkItem) -> StartSend<Self::SinkItem, Self::SinkError> {
|
||||
match self.state {
|
||||
ClientState::Connected(ref mut stream) => match stream.start_send(Packet::Stanza(item))
|
||||
{
|
||||
Ok(AsyncSink::NotReady(Packet::Stanza(stanza))) => Ok(AsyncSink::NotReady(stanza)),
|
||||
Ok(AsyncSink::NotReady(_)) => {
|
||||
panic!("Client.start_send with stanza but got something else back")
|
||||
ClientState::Connected(ref mut stream) => {
|
||||
match stream.start_send(Packet::Stanza(item)) {
|
||||
Ok(AsyncSink::NotReady(Packet::Stanza(stanza))) =>
|
||||
Ok(AsyncSink::NotReady(stanza)),
|
||||
Ok(AsyncSink::NotReady(_)) => {
|
||||
panic!("Client.start_send with stanza but got something else back")
|
||||
}
|
||||
Ok(AsyncSink::Ready) =>
|
||||
Ok(AsyncSink::Ready),
|
||||
Err(e) =>
|
||||
Err(e)?,
|
||||
}
|
||||
Ok(AsyncSink::Ready) => Ok(AsyncSink::Ready),
|
||||
Err(e) => Err(e)?,
|
||||
},
|
||||
_ => Ok(AsyncSink::NotReady(item)),
|
||||
}
|
||||
_ =>
|
||||
Ok(AsyncSink::NotReady(item)),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue