pub enum ServerResponse {
AprsPacket(AprsPacket),
ServerComment(ServerComment),
Comment(Comment),
ParserError(AprsError),
}Variants§
Trait Implementations§
Source§impl Clone for ServerResponse
impl Clone for ServerResponse
Source§fn clone(&self) -> ServerResponse
fn clone(&self) -> ServerResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServerResponse
impl Debug for ServerResponse
Source§impl FromStr for ServerResponse
impl FromStr for ServerResponse
Source§impl PartialEq for ServerResponse
impl PartialEq for ServerResponse
Source§fn eq(&self, other: &ServerResponse) -> bool
fn eq(&self, other: &ServerResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServerResponse
impl Serialize for ServerResponse
impl StructuralPartialEq for ServerResponse
Auto Trait Implementations§
impl Freeze for ServerResponse
impl RefUnwindSafe for ServerResponse
impl Send for ServerResponse
impl Sync for ServerResponse
impl Unpin for ServerResponse
impl UnsafeUnpin for ServerResponse
impl UnwindSafe for ServerResponse
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