pub enum InterfaceType {
Stub,
Proxy,
}Expand description
The type of a SOME/IP service interface.
This defines how it should process SOME/IP messages.
Variants§
Stub
A service interface being served on a local endpoint.
Proxy
A service interface being served on a remote endpoint.
Trait Implementations§
Source§impl Clone for InterfaceType
impl Clone for InterfaceType
Source§fn clone(&self) -> InterfaceType
fn clone(&self) -> InterfaceType
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 InterfaceType
impl Debug for InterfaceType
Source§impl Default for InterfaceType
impl Default for InterfaceType
Source§fn default() -> InterfaceType
fn default() -> InterfaceType
Returns the “default value” for a type. Read more
Source§impl PartialEq for InterfaceType
impl PartialEq for InterfaceType
impl Copy for InterfaceType
impl Eq for InterfaceType
impl StructuralPartialEq for InterfaceType
Auto Trait Implementations§
impl Freeze for InterfaceType
impl RefUnwindSafe for InterfaceType
impl Send for InterfaceType
impl Sync for InterfaceType
impl Unpin for InterfaceType
impl UnsafeUnpin for InterfaceType
impl UnwindSafe for InterfaceType
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