pub enum OverlayPartitionRequest {
GetPartitions {
responder: OverlayPartitionGetPartitionsResponder,
},
}
Expand description
An overlay is created from merging several contiguous GPT partitions into one logical partition.
Variants§
GetPartitions
Returns the set of underlying GPT partitions which the overlay contains.
Fields
§
responder: OverlayPartitionGetPartitionsResponder
Implementations§
Source§impl OverlayPartitionRequest
impl OverlayPartitionRequest
pub fn into_get_partitions( self, ) -> Option<OverlayPartitionGetPartitionsResponder>
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 OverlayPartitionRequest
impl !RefUnwindSafe for OverlayPartitionRequest
impl Send for OverlayPartitionRequest
impl Sync for OverlayPartitionRequest
impl Unpin for OverlayPartitionRequest
impl !UnwindSafe for OverlayPartitionRequest
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