pub enum EchoRequest {
EchoString {
value: String,
responder: EchoEchoStringResponder,
},
}
Variants§
Implementations§
Source§impl EchoRequest
impl EchoRequest
pub fn into_echo_string(self) -> Option<(String, EchoEchoStringResponder)>
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 EchoRequest
impl !RefUnwindSafe for EchoRequest
impl Send for EchoRequest
impl Sync for EchoRequest
impl Unpin for EchoRequest
impl !UnwindSafe for EchoRequest
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