pub struct DryRunBlock {
pub omitted_reason: Option<String>,
pub content: Option<String>,
}Fields§
§omitted_reason: Option<String>"no_resources" | "no_memory" | "no_storage" when the block is
suppressed by a --no-* flag; otherwise None.
content: Option<String>Rendered block text when present. None when the block is disabled
or nothing would be rendered for this step.
Trait Implementations§
Source§impl Clone for DryRunBlock
impl Clone for DryRunBlock
Source§fn clone(&self) -> DryRunBlock
fn clone(&self) -> DryRunBlock
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DryRunBlock
impl Debug for DryRunBlock
Auto Trait Implementations§
impl Freeze for DryRunBlock
impl RefUnwindSafe for DryRunBlock
impl Send for DryRunBlock
impl Sync for DryRunBlock
impl Unpin for DryRunBlock
impl UnsafeUnpin for DryRunBlock
impl UnwindSafe for DryRunBlock
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