pub struct BlockDeviceConfig {
pub use_zxcrypt: bool,
pub fvm_volume_size: Option<u64>,
}
Expand description
Block device configuration options.
Fields§
§use_zxcrypt: bool
If true, zxcrypt is initialized on top of the block device.
fvm_volume_size: Option<u64>
For filesystem that are not FVM-aware, this option can be used to pre-allocate space inside of the FVM volume.
Auto Trait Implementations§
impl Freeze for BlockDeviceConfig
impl RefUnwindSafe for BlockDeviceConfig
impl Send for BlockDeviceConfig
impl Sync for BlockDeviceConfig
impl Unpin for BlockDeviceConfig
impl UnwindSafe for BlockDeviceConfig
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