pub enum ClientUpdate<P: PayloadWireFormat> {
DiscoveryUpdated(P::SdHeader),
Unicast(Message<P>),
Error(Error),
}Variants§
DiscoveryUpdated(P::SdHeader)
Discovery message received
Unicast(Message<P>)
Unicast message received
Error(Error)
Inner SOME/IP Client has encountered an error
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for ClientUpdate<P>
impl<P> !RefUnwindSafe for ClientUpdate<P>
impl<P> Send for ClientUpdate<P>
impl<P> Sync for ClientUpdate<P>
impl<P> Unpin for ClientUpdate<P>
impl<P> UnsafeUnpin for ClientUpdate<P>
impl<P> !UnwindSafe for ClientUpdate<P>
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