pub enum StarnixVolumeAdminRequest {
Delete {
responder: StarnixVolumeAdminDeleteResponder,
},
GetRoot {
responder: StarnixVolumeAdminGetRootResponder,
},
}
Variants§
Delete
Deletes the Starnix volume. Fails if the volume was mounted.
Fields
§
responder: StarnixVolumeAdminDeleteResponder
GetRoot
Returns the root of the Starnix volume. Fails if the Starnix volume is not mounted.
Fields
§
responder: StarnixVolumeAdminGetRootResponder
Implementations§
Source§impl StarnixVolumeAdminRequest
impl StarnixVolumeAdminRequest
pub fn into_delete(self) -> Option<StarnixVolumeAdminDeleteResponder>
pub fn into_get_root(self) -> Option<StarnixVolumeAdminGetRootResponder>
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 StarnixVolumeAdminRequest
impl !RefUnwindSafe for StarnixVolumeAdminRequest
impl Send for StarnixVolumeAdminRequest
impl Sync for StarnixVolumeAdminRequest
impl Unpin for StarnixVolumeAdminRequest
impl !UnwindSafe for StarnixVolumeAdminRequest
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