#[non_exhaustive]pub struct EmitOptions {
pub dss: DssEmitOptions,
pub bmopf: BmopfEmitOptions,
}Expand description
Format specific policies for distribution network emission.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dss: DssEmitOptions§bmopf: BmopfEmitOptionsTrait Implementations§
Source§impl Clone for EmitOptions
impl Clone for EmitOptions
Source§fn clone(&self) -> EmitOptions
fn clone(&self) -> EmitOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmitOptions
impl Debug for EmitOptions
Source§impl Default for EmitOptions
impl Default for EmitOptions
Source§fn default() -> EmitOptions
fn default() -> EmitOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for EmitOptions
impl PartialEq for EmitOptions
Source§fn eq(&self, other: &EmitOptions) -> bool
fn eq(&self, other: &EmitOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EmitOptions
Auto Trait Implementations§
impl Freeze for EmitOptions
impl RefUnwindSafe for EmitOptions
impl Send for EmitOptions
impl Sync for EmitOptions
impl Unpin for EmitOptions
impl UnsafeUnpin for EmitOptions
impl UnwindSafe for EmitOptions
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