pub enum CloneableRequest {
Clone2 {
request: ServerEnd<CloneableMarker>,
control_handle: CloneableControlHandle,
},
}
Expand description
Provides a means of duplicating a connection.
See the composing protocol’s documentation for a description of connection-scoped state, if any.
Variants§
Clone2
Implementations§
Source§impl CloneableRequest
impl CloneableRequest
pub fn into_clone2( self, ) -> Option<(ServerEnd<CloneableMarker>, CloneableControlHandle)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CloneableRequest
impl !RefUnwindSafe for CloneableRequest
impl Send for CloneableRequest
impl Sync for CloneableRequest
impl Unpin for CloneableRequest
impl !UnwindSafe for CloneableRequest
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