pub enum ModuleOutputMode {
Combined,
Separate,
}Expand description
Render each module as a separate file or combined in a single file.
Variants§
Combined
Render all Daml modules in a single Rust src file.
Separate
Render each Daml module in a separate Rust src files.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModuleOutputMode
impl RefUnwindSafe for ModuleOutputMode
impl Send for ModuleOutputMode
impl Sync for ModuleOutputMode
impl Unpin for ModuleOutputMode
impl UnwindSafe for ModuleOutputMode
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more