pub enum RebindParentRequest {
AddChild {
responder: RebindParentAddChildResponder,
},
RemoveChild {
responder: RebindParentRemoveChildResponder,
},
}
Variants§
AddChild
Fields
§
responder: RebindParentAddChildResponder
RemoveChild
Fields
§
responder: RebindParentRemoveChildResponder
Implementations§
Source§impl RebindParentRequest
impl RebindParentRequest
pub fn into_add_child(self) -> Option<RebindParentAddChildResponder>
pub fn into_remove_child(self) -> Option<RebindParentRemoveChildResponder>
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 RebindParentRequest
impl !RefUnwindSafe for RebindParentRequest
impl Send for RebindParentRequest
impl Sync for RebindParentRequest
impl Unpin for RebindParentRequest
impl !UnwindSafe for RebindParentRequest
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