enum Local {
ToSend(Settings),
WaitingAck(Settings),
Synced,
}
Variants§
ToSend(Settings)
We want to send these SETTINGS to the remote when the socket is ready.
WaitingAck(Settings)
We have sent these SETTINGS and are waiting for the remote to ACK before we apply them.
Synced
Our local settings are in sync with the remote.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Local
impl RefUnwindSafe for Local
impl Send for Local
impl Sync for Local
impl Unpin for Local
impl UnwindSafe for Local
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