pub enum BusyStateUpdateResult {
Success,
Disconnected,
}Expand description
The error type for a BusyState update
Variants§
Success
Update succesful
Disconnected
The only posibility for fail is that the connection is already (disgracefully) closed.
Trait Implementations§
Source§impl Clone for BusyStateUpdateResult
impl Clone for BusyStateUpdateResult
Source§fn clone(&self) -> BusyStateUpdateResult
fn clone(&self) -> BusyStateUpdateResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BusyStateUpdateResult
impl Debug for BusyStateUpdateResult
Source§impl PartialEq for BusyStateUpdateResult
impl PartialEq for BusyStateUpdateResult
impl Copy for BusyStateUpdateResult
impl StructuralPartialEq for BusyStateUpdateResult
Auto Trait Implementations§
impl Freeze for BusyStateUpdateResult
impl RefUnwindSafe for BusyStateUpdateResult
impl Send for BusyStateUpdateResult
impl Sync for BusyStateUpdateResult
impl Unpin for BusyStateUpdateResult
impl UnwindSafe for BusyStateUpdateResult
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