pub struct MemoryScanMediaAction {
pub physical_address: Option<String>,
pub length: Option<Int64>,
pub no_event_log: Option<Boolean>,
}Expand description
Scans the media of the memory device.
This action shall scan the media of the memory device.
Fields§
§physical_address: Option<String>The starting device physical address to scan as a hex-encoded string.
This parameter shall contain the starting device physical address to scan as a hex-encoded string.
length: Option<Int64>The length of the target region to scan in bytes from the physical address.
This parameter shall contain the length of the target region to scan in bytes from the PhysicalAddress parameter.
no_event_log: Option<Boolean>Indicates whether events related to the media scan are not logged.
This parameter shall indicate whether events related to the media scan are not logged. If not
provided by the client, the value shall be assumed to be false.
Trait Implementations§
Source§impl Debug for MemoryScanMediaAction
impl Debug for MemoryScanMediaAction
Auto Trait Implementations§
impl Freeze for MemoryScanMediaAction
impl RefUnwindSafe for MemoryScanMediaAction
impl Send for MemoryScanMediaAction
impl Sync for MemoryScanMediaAction
impl Unpin for MemoryScanMediaAction
impl UnsafeUnpin for MemoryScanMediaAction
impl UnwindSafe for MemoryScanMediaAction
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