Home
last modified time | relevance | path

Searched defs:MsgOnSocket (Results 1 – 2 of 2) sorted by relevance

/external/crosvm/msg_socket/src/
Dmsg_on_socket.rs86 pub trait MsgOnSocket: Sized { interface
174 impl MsgOnSocket for () { impl
194 impl MsgOnSocket for $type { impl
291 impl MsgOnSocket for $type { impl
327 impl<T: MsgOnSocket + Clone> MsgOnSocket for [T; $N] { impl
Dlib.rs19 pub fn pair<Request: MsgOnSocket, Response: MsgOnSocket>( in pair()