pub enum ThriftTransport {
SharedMemory(ThriftSharedMemoryTransport),
Pipe(ThriftPipeTransport),
Socket(ThriftSocketTransport),
}Variants§
Pipe(ThriftPipeTransport)
Socket(ThriftSocketTransport)
Trait Implementations§
Source§impl Clone for ThriftTransport
impl Clone for ThriftTransport
Source§fn clone(&self) -> ThriftTransport
fn clone(&self) -> ThriftTransport
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 moreAuto Trait Implementations§
impl Freeze for ThriftTransport
impl RefUnwindSafe for ThriftTransport
impl Send for ThriftTransport
impl Sync for ThriftTransport
impl Unpin for ThriftTransport
impl UnwindSafe for ThriftTransport
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